type Domain = { name: string; version: string; chainId: number; verifyingContract: string; }; export declare const signTypedData: ({ privateKey, domain, types, message, }: { privateKey: string; domain: Domain; types: Record; message: Record; }) => Promise<{ r: string; s: string; v: number; }>; export {};