import { MenuOptions, Option } from './Select.types'; export declare const getCascaderOptionLabel: (data: MenuOptions) => string; export declare const getCascaderOptionValue: (data: MenuOptions) => Array; export declare const getInitialCascaderMenuOptions: (options: MenuOptions, selectedIds: Array, disabledLevel: number) => any[]; export declare const parseOptions: (acc: MenuOptions, item: Option, indexPosition: string, parentId: string) => { data: Option; isDisabled: boolean; isSelected: boolean; key: string; type: string; children: string; label: string; value: string; parentId: string; } | { type: string; key: string; data: Option; options: any; isSelected: boolean; children: string; parentId: string; }; export declare const toOption: (option: Option, id: string, parentId?: string) => { data: Option; isDisabled: boolean; isSelected: boolean; key: string; type: string; children: string; label: string; value: string; parentId: string; };