import { AuthTokens } from './auth-tokens';
/** @ignore */
export type AuthResult = {
    headers?: Record<string, string>;
    oauthTokens?: AuthTokens;
};
