import { BigNumberish, Wallet } from "ethers"; import { Chain, EIP712Signature } from "../types"; export declare const _buildProfilelessPostSig: ({ chain, wallet, contentURI, collectModule, collectModuleInitData, nonce, }: { chain: Chain; wallet: Wallet; contentURI: string; collectModule: string; collectModuleInitData: string; nonce: number; }) => Promise; export declare const _buildProfilelessCollectSig: ({ chain, wallet, pubId, collectModuleValidateData, nonce, }: { chain: Chain; wallet: Wallet; pubId: BigNumberish; collectModuleValidateData: string; nonce: number; }) => Promise;