import React from 'react'; interface IPreviewTextProps { prefixCls?: string; renderText?: (value: any) => React.ReactNode; } export declare const PreviewText: { (props: React.PropsWithChildren): JSX.Element; Input: React.FC & React.InputHTMLAttributes, "type" | "pattern" | "name" | "maxLength" | "minLength" | "onFocus" | "onBlur" | "step" | "autoComplete" | "autoFocus" | "autoCapitalize" | "autoCorrect" | "inputMode" | "onCompositionEnd" | "onCompositionStart" | "onKeyDown" | "onKeyUp" | "onClick"> & { value?: string; defaultValue?: string; onChange?: (val: string) => void; placeholder?: string; disabled?: boolean; readOnly?: boolean; clearable?: boolean; onlyShowClearWhenFocus?: boolean; onClear?: () => void; id?: string; onEnterPress?: (e: React.KeyboardEvent) => void; enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send"; min?: number; max?: number; } & { className?: string; style?: React.CSSProperties & Partial>; tabIndex?: number; } & React.AriaAttributes & { role?: string; } & IPreviewTextProps>; Selector: React.FC<{ options: import("antd-mobile/lib/components/selector").SelectorOption[]; columns?: number; multiple?: boolean; disabled?: boolean; defaultValue?: any[]; value?: any[]; onChange?: (v: any[], extend: { items: import("antd-mobile/lib/components/selector").SelectorOption[]; }) => void; showCheckMark?: boolean; } & { className?: string; style?: React.CSSProperties & Partial>; tabIndex?: number; } & React.AriaAttributes & IPreviewTextProps>; Placeholder: React.Provider; DatePicker: React.FC; Cascader: React.FC<{ options: import("antd-mobile/lib/components/cascader").CascaderOption[]; value?: string[]; defaultValue?: string[]; placeholder?: string; onSelect?: (value: string[], extend: import("antd-mobile/lib/components/cascader").CascaderValueExtend) => void; onConfirm?: (value: string[], extend: import("antd-mobile/lib/components/cascader").CascaderValueExtend) => void; onCancel?: () => void; onClose?: () => void; visible?: boolean; title?: React.ReactNode; confirmText?: React.ReactNode; cancelText?: React.ReactNode; children?: (items: import("antd-mobile/lib/components/cascader").CascaderOption[], actions: import("antd-mobile/lib/components/cascader").CascaderActions) => React.ReactNode; onTabsChange?: (index: number) => void; activeIcon?: React.ReactNode; } & Pick & { className?: string; style?: React.CSSProperties & Partial>; tabIndex?: number; } & React.AriaAttributes & IPreviewTextProps>; usePlaceholder: (value?: any) => any; }; export default PreviewText;