import { FetchedKindeState, PublicKindeConfig } from './types.js'; export declare const getRefreshTokensServerAction: () => Promise; type FetchKindeStateResponse = { success: true; kindeState: Omit; env: PublicKindeConfig; } | { success: false; error: string; env: PublicKindeConfig | null; }; export declare const fetchKindeState: () => Promise; export {}; //# sourceMappingURL=utils.d.ts.map