import { CustomCurrencyNumberFormat, InvoiceComponent, PaginationInfo, SimpleTableCols } from "../../../types"; import { RowType } from "../../molecules"; import { InvoiceRow } from "./index"; export interface InvoicesListVisualProps extends InvoiceComponent { customCurrencyNumberFormat?: CustomCurrencyNumberFormat; finalCols: SimpleTableCols[]; invoicesRow: InvoiceRow[]; onNextPage: () => void; onPrevPage: () => void; onRowClick?: (row: RowType) => void; pageInfo: PaginationInfo; prepaidRows: InvoiceRow[]; } export declare const InvoicesListVisual: (props: InvoicesListVisualProps) => import("react/jsx-runtime").JSX.Element;