import { FormType } from '../../../interfaces'; import { TableProps } from '../../../molecules/table/Table'; export type FormsTableProps = Omit, "columns"> & { tags?: { label: string; value: string; }[]; }; export declare function FormsTable({ tags, ...props }: FormsTableProps): import("react/jsx-runtime").JSX.Element;