import { ItemConfig } from '../item/item-config.interface'; /** FormConfig is an extension of ItemConfig. */ export interface FormConfig extends ItemConfig { /** If true, no submit button will be rendered. */ hideSubmitButton?: boolean; /** The label of the submit button */ submitButtonLabel?: string; /** If true, the column visibility filter will not be visible */ disableColumnFilter?: boolean; }