import type { BaseOptionType } from 'antd/lib/cascader'; import type { FieldNames, SingleValueType } from 'rc-cascader/lib/Cascader'; export interface CertainFieldNames { value: string; children: string; [key: string]: string; } export declare const getCertainFieldNames: (fieldNames?: FieldNames) => { value: string; children: string; }; export declare const findLeafAndJudgeCheckAll: (value: SingleValueType[], certainFieldNames: CertainFieldNames, options: BaseOptionType[], pathArr?: SingleValueType) => boolean; export declare const getCheckAllValueWhenShowChild: (certainFieldNames: CertainFieldNames, options?: BaseOptionType[]) => SingleValueType[]; export declare const getCheckAllValueWhenShowParent: (certainFieldNames: CertainFieldNames, options?: BaseOptionType[]) => SingleValueType[];