/// export interface OptionProps { key: string; value: string; parentKey: string; children?: OptionProps[]; } export interface CascadeProps { name?: string; value: OptionProps[]; options: OptionProps[]; height?: string; className?: string; prompt?: (e: any) => string; onChange: (v: any[], last?: any) => void; onComplete?: (v: any[], last?: any) => void; } declare const Cascade: (props: CascadeProps) => JSX.Element; export default Cascade;