export declare const CHECK_ALL_VALUE = "LING_XI_CHECK_ALL"; export declare const localFilterOption: (input: string | undefined, option: any, localFilterType?: 'default' | 'label' | 'value') => boolean; export declare const isLabelInValue: (data: any) => boolean; export declare const handleFormValue: (value: any, mode?: string) => any; export declare const transformValueType: (v: any, curVal: any) => any; export declare const getRules: (min?: number, max?: number, getLocale?: any) => ({ type: string; min: number; message: any; max?: undefined; } | { type: string; max: number; message: any; min?: undefined; })[]; export declare const getChangeSelectData: (dataSource: any[], val: string[] | Object, mode?: string) => any[] | undefined; export declare const getSelectedAllData: (checked: boolean, dataSource: any[], value: any[], max?: number) => any[]; export declare const checkIfSelectedAll: (dataSource: any[], value: any[], filterValue?: string) => boolean; /** * 处理下拉选项的数据 * @param dataSource 数据源 * @param appendDataSoure 追加在数据源的额外数据 * @param valueKey * @param labelKey * @returns */ export declare const handleDataSource: (dataSource: any[], appendDataSoure?: any[] | Object, valueKey?: string, labelKey?: string) => any[];