import { WaypointProvider } from '@sky-mavis/waypoint';
export type WaypointScope = 'openid' | 'profile' | 'email' | 'wallet';
export interface IWaypointProviderConfigs {
    chainId?: number;
    clientId?: string;
    waypointOrigin?: string;
    scopes?: WaypointScope[];
    popupCloseDelay?: number;
    source?: string;
}
export declare const requestWaypointProvider: (configs?: IWaypointProviderConfigs) => WaypointProvider;
//# sourceMappingURL=waypoint-provider.d.ts.map