import type { ShowCheckedStrategy } from 'rc-cascader/lib/Cascader'; import type { CertainFieldNames } from './utils'; interface DataNodeType { [key: string]: V | DataNodeType[]; } export interface FormatLeafOptions { checkedValues?: V[][]; options: DataNodeType[]; fieldNames?: CertainFieldNames; showCheckedStrategy?: ShowCheckedStrategy; } declare const getLeafValueArr: (formatOptions: FormatLeafOptions) => false | V[] | null; export default getLeafValueArr;