export interface SignTestingJwtProps {
    projectId: string;
    privateKey: string;
    userData: {
        id: string;
    } & Record<string, any>;
}
declare function useSignTestingJwt(): (props: SignTestingJwtProps) => Promise<string | undefined>;
export default useSignTestingJwt;
