import { ColumnForms } from './column'; export interface DocumentColumnForms extends ColumnForms { /** * List of type values */ listValuesType: Array<{ text: string; value: string; }>; /** * attribute of type document */ attributeDocumentType: string; /** * attribute of document input */ attributeDocumentNumber: string; /** * default document type */ defaultType?: string; } export declare type TypeDocument = DocumentColumnForms;