import { OktaAuthOAuthInterface, TokenParams, TokenResponse } from './types'; export declare function getWithPopup(sdk: OktaAuthOAuthInterface, options: TokenParams & { initialPath?: string; }): Promise; export declare function getWithIDPPopup(sdk: OktaAuthOAuthInterface, options: Omit & { redirectUri: string; }): { cancel: () => void; promise: Promise; };