/// import { FormSchema } from "../../interfaces"; import { TableProps } from "../table/table.component"; export declare type FormsTableProps = Omit, "columns"> & { icon?: string; tags?: { label: string; value: string; }[]; }; export declare function FormsTable({ Cell, ...props }: FormsTableProps): JSX.Element;