import { GrantType } from './index.js';
import { default as express } from 'express';
export declare const mockClientConfig: {
    clientId: string;
    secret: string;
    grantType: GrantType;
    issuerBaseUrl: string;
    siteUrl: string;
    unAuthorisedUrl: string;
    redirectUrl: string;
    postLogoutRedirectUrl: string;
    scope: string;
};
export declare const getMockAuthURL: (paramOverrides?: {}) => URL;
export declare const setupKindeMock: (configOverrides?: {}) => express.Application;
