export declare const UpdateURLsQuery: string;
export interface UpdateURLsQueryVariables {
    apiKey: string;
    applicationUrl: string;
    redirectUrlWhitelist: string[];
    appProxy?: {
        proxyUrl: string;
        proxySubPath: string;
        proxySubPathPrefix: string;
    };
}
export interface UpdateURLsQuerySchema {
    appUpdate: {
        userErrors: {
            field: string[];
            message: string;
        }[];
    };
}
