import { JwtPayload } from "jsonwebtoken";
import { HttpHandler } from "msw";
export type { JwtPayload } from 'jsonwebtoken';
export const createJWKSMock: (jwksBase: string, jwksPath?: string) => {
    start: () => () => void;
    /**
     * @deprecated Use the thunk returned by `start` instead.
     */
    stop: () => void;
    kid: () => string;
    token: (token?: JwtPayload) => string;
    mswHandler: HttpHandler;
};
export type JWKSMock = ReturnType<typeof createJWKSMock>;
/**
 * @deprecated Use the named export instead
 */
export default createJWKSMock;

//# sourceMappingURL=types.d.ts.map
