import { type Chain, type Client, type Hash, type Hex, type Transport } from "viem"; import { type SendUserOperationParameters, type SmartAccount } from "viem/account-abstraction"; export type SendUserOperationWithSignaturesParameters = SendUserOperationParameters & { signatures: Hex[]; }; export declare function sendUserOperationWithSignatures(client: Client, args_: SendUserOperationWithSignaturesParameters): Promise; //# sourceMappingURL=sendUserOperationWithSignatures.d.ts.map