@theaimegroup/aime-component-library
Version:
AIME Component Library
16 lines (15 loc) • 422 B
TypeScript
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;