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