/// import { CascadeOptions, CascadeOption } from "@easyv/dtable-types/output/Column"; import { MultiSelectValue } from "@easyv/dtable-types/output/Cell"; export declare const getCascadePathIds: (value: string, options: CascadeOption[]) => string[]; export declare const getCascadeParentPathIds: (value: string, options: CascadeOption[]) => string[]; export declare const getCascadePath: (value: string, options: CascadeOption[]) => string; declare type Props = { value: MultiSelectValue; typeOptions: CascadeOptions; lineClamp?: number; }; declare function MultiSelectCell({ typeOptions, value, lineClamp, className, style, }: Props & ClassNameAndStyle): JSX.Element | null; export default MultiSelectCell;