import { TransferError } from "@connect2ic/core"; declare type Props = { amount: number; to: string; from?: string; }; export declare const useTransfer: ({ amount, to, from }: Props) => readonly [() => Promise>, { readonly loading: boolean; readonly error: { kind: TransferError; } | undefined; }]; export {};