import type { LocationQuery } from 'vue-router';
export type OAuth2QueryParameters = {
    client_id: string;
    redirect_uri: string;
    response_type: string;
    scope: string | string[];
    state?: string;
};
export declare function extractOAuth2QueryParameters(query: LocationQuery): OAuth2QueryParameters;
//# sourceMappingURL=helpers.d.ts.map