export interface WaitForAuthCodeOptions { store: string; state: string; port: number; timeoutMs?: number; onListening?: () => void | Promise; } export declare function waitForStoreAuthCode({ store, state, port, timeoutMs, onListening, }: WaitForAuthCodeOptions): Promise;