import { InputProps } from "antd/lib/input"; import { ColumnType, TableProps } from "antd/lib/table"; import * as React from "react"; export declare function ListSearch(props: Omit): JSX.Element; export declare function ListError(): JSX.Element | null; export declare type ListProps = { path?: string | ((v: RecordType) => string); listPath?: string; onSelect?: (v: RecordType) => void; columns: (Omit, "render"> & { title: string; key: string; render: (item: RecordType) => React.ReactNode; sortable?: boolean; })[]; paginate?: boolean; } & Omit, "columns" | "loading" | "onRow" | "rowKey" | "components" | "dataSource" | "onChange" | "pagination">; export declare function List({ path, listPath, columns, onSelect, paginate, ...props }: ListProps): JSX.Element; export declare namespace List { var Error: typeof ListError; var Search: typeof ListSearch; } export declare const InternalTable: (props: TableProps & { elevated: boolean; }) => React.ReactElement; export * from "./list-context"; //# sourceMappingURL=index.d.ts.map