import type { CascadeProOption, IUseFieldRequest } from '../types';
/**
 * 根据当前点击，获取即将渲染的数据
 *
 * @param param
 * @returns
 */
export declare function useFieldRequest(param: IUseFieldRequest): {
    result: import("vue").ComputedRef<CascadeProOption[][] | {
        [x: string]: any;
        name: string;
        id: string;
        pid: string;
        children?: any[] | undefined;
        idPath: string;
        namePath: string;
        isIdSameAsOnlyOneChild?: boolean | undefined;
        firstLetter?: string | undefined;
    }[][]>;
    error: import("vue").ComputedRef<string>;
    onClick: import("lodash").DebouncedFunc<(selected: CascadeProOption) => void>;
};
