import { default as React, FunctionComponent } from 'react'; import { CascaderProps, CascaderOption, CascaderValue, CascaderOptionKey } from '../cascader/index.taro'; export interface AddressProps extends CascaderProps { visible: boolean; type: string; options: CascaderOption[]; value?: CascaderValue; defaultValue?: CascaderValue; optionKey: CascaderOptionKey; format: Record; height: string | number; } export declare const CustomRender: FunctionComponent & Omit, 'title' | 'defaultValue' | 'onChange'>>;