ZkSendLinkOptions: {
    address?: string;
    claimApi?: string;
    client?: SuiClient;
    contract?: ZkBagContractOptions | null;
    host?: string;
    isContractLink: boolean;
    keypair?: Keypair;
    network?: "mainnet" | "testnet";
    path?: string;
} & (
    | { address: string; keypair?: never }
    | { address?: never; keypair: Keypair }
)