import React from "react"; interface Account { parent: Account | null; balance: { $: { number: string; commodity: string; value: string; sign: string; }; }; name: string; fullName: string[]; } interface AccountsData { [key: string]: Account; } interface LedgerTableProps { accounts: AccountsData; } export declare const LedgerTable: React.FC; export {};