import { Col, Panel } from "../intefaces/interfaces";
interface AddEditFormColProps {
    primaryColor: string;
    secondaryColor: string;
    title: string;
    tablename: string;
    col: Col[];
    noOfCols: number;
    formdata: any;
    panels: Panel[];
    isUpdate: boolean;
    close: () => void;
    refetch: () => void;
}
declare function AddEditFormModal(props: AddEditFormColProps): JSX.Element;
export default AddEditFormModal;
