declare function useSignTestingJwt(): ({ projectId, privateKey, payload, }: {
    projectId: string;
    privateKey: string;
    payload: Record<string, any>;
}) => Promise<string | undefined>;
export default useSignTestingJwt;
