import { DictDataParamType } from './dict-data-param-type.enum'; export declare class DictDataParam { searchId: number; searchType: DictDataParamType; constructor(searchId?: number, searchType?: DictDataParamType); isTenant(): boolean; isDept(): boolean; isGroup(): boolean; }