UNPKG

@theaimegroup/aime-component-library

Version:

AIME Component Library

17 lines (16 loc) 458 B
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;