import { TableElement } from "../../typings"; import React from "react"; import { RecursivePartial } from "../../typings/helper"; export type TableProps = RecursivePartial> & { idx?: string | null; children: string | React.ReactNode; data?: TableElement["data"]; }; export declare function Table(props: TableProps): React.JSX.Element;