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