import type { AccountLike } from "@ledgerhq/types-live"; type SendFlowTrackingAccount = Readonly<{ type?: AccountLike["type"]; currency?: Readonly<{ id?: string; ticker?: string; }>; token?: Readonly<{ id?: string; ticker?: string; parentCurrencyId: string; }>; }>; type SendFlowTrackingParentAccount = Readonly<{ currency: Readonly<{ id: string; }>; }>; export declare function getSendFlowBlockchain(account: SendFlowTrackingAccount | null, parentAccount?: SendFlowTrackingParentAccount | null): string; export declare function getSendFlowCurrencyId(account: SendFlowTrackingAccount | null): string; export declare function getSendFlowCurrencyTicker(account: SendFlowTrackingAccount | null): string; export declare function getSendFlowTrackingProperties(account: SendFlowTrackingAccount | null, parentAccount?: SendFlowTrackingParentAccount | null, newSendFlow?: boolean): { flow: string; newSendFlow: boolean; blockchain: string; currency: string; currency_id: string; }; export {}; //# sourceMappingURL=send.d.ts.map