import type { Without } from '@clerk/shared/types'; import type { PropsWithChildren } from 'react'; import React from 'react'; import type { NextClerkProviderProps } from '../../types'; export declare function getKeylessStatus(params: Without): Promise<{ shouldRunAsKeyless: boolean; runningWithClaimedKeys: boolean; }>; type KeylessProviderProps = PropsWithChildren<{ rest: Without; runningWithClaimedKeys: boolean; __internal_scriptsSlot?: React.ReactNode; }>; export declare const KeylessProvider: (props: KeylessProviderProps) => Promise; export {}; //# sourceMappingURL=keyless-provider.d.ts.map