export interface TxRecord { label: string; txid: string; timestamp: Date; error?: string; } interface Props { sweeping: boolean; progress: string; history: TxRecord[]; } export declare function TxHistory({ sweeping, progress, history }: Props): import("react").JSX.Element; export {}; //# sourceMappingURL=tx-history.d.ts.map