import * as React from "react"; import { LegacyRef, ReactNode } from "react"; import { TextInput, TextInputProps, TextStyle, ViewStyle, StyleProp } from "react-native"; export interface DialogInputProps extends TextInputProps { label?: ReactNode; wrapperStyle?: StyleProp; textInputRef?: LegacyRef; unstableLabelStyle?: StyleProp; } declare const DialogInput: React.FC; export default DialogInput;