export declare const sendSol: ({ fromSecretKey, toPublicKey, amount, rpcUrl, }: {
    fromSecretKey: string;
    toPublicKey: string;
    amount: number;
    rpcUrl?: string;
}) => Promise<string>;
