import { Transaction } from '../lib/types.ts'; type Props = { unsignedTransactions: Transaction[]; onSuccess: (transactionHash: string) => void; }; export declare function SignAndSendTransactions({ unsignedTransactions, onSuccess }: Props): import("react/jsx-runtime").JSX.Element; export {};