UNPKG

@grafana/ui

Version:
8 lines (7 loc) 532 B
import { type BaseOptionType as RCCascaderOption, type CascaderProps } from '@rc-component/cascader'; import { type CascaderOption } from './Cascader'; type onChangeType = ((values: string[], options: CascaderOption[]) => void) | undefined; export declare const onChangeCascader: (onChanged: onChangeType) => CascaderProps["onChange"]; type onLoadDataType = ((options: CascaderOption[]) => void) | undefined; export declare const onLoadDataCascader: (onLoadData: onLoadDataType) => (options: RCCascaderOption[]) => void; export {};