@nutui/nutui-react-taro
Version: 
京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序
15 lines (14 loc) • 656 B
TypeScript
import React, { FunctionComponent } from 'react';
import { CascaderOption, TaroCascaderProps, CascaderValue, CascaderOptionKey, RegionData } from "../../types";
export interface AddressProps extends TaroCascaderProps {
    visible: boolean;
    type: string;
    options: CascaderOption[];
    hotList: RegionData[];
    value: CascaderValue;
    defaultValue: CascaderValue;
    optionKey: CascaderOptionKey;
    format: Record<string, string | number | null>;
    height: string | number;
}
export declare const ElevatorRender: FunctionComponent<Partial<AddressProps> & Omit<React.HTMLAttributes<HTMLDivElement>, 'title' | 'defaultValue' | 'onChange'>>;