export declare function checkExistingOAuthSettings(): Promise<{
    hasClientId: boolean;
    hasClientSecret: boolean;
    hasAllowedDomains: boolean;
    clientId: string | undefined;
    clientSecret: string | undefined;
    allowedDomains: string | undefined;
}>;
