import { AdminPageProps } from '../'; import { EntityList, EntityColumnProps, SimpleSearchForm } from '../../layout'; import { ListOptions } from 'matrix-ui-service'; import { DeptForm } from './DeptForm'; export declare class DeptList extends EntityList { static defaultProps: { name: string; }; constructor(props: AdminPageProps); get domainService(): import("matrix-ui-service").DeptService; get columns(): EntityColumnProps[]; getExtraColumns(): EntityColumnProps[]; getEntityForm(): typeof DeptForm; getSearchForm(): typeof DeptSearchForm; getQueryParam(): ListOptions; } export declare class DeptSearchForm extends SimpleSearchForm { placeholder: string; }