import type { FileInputProps, PasswordTextInputProps, TextInputProps } from './TextInput.types';
export declare function isPasswordInput(props: TextInputProps): props is PasswordTextInputProps;
export declare function isFileInput(props: TextInputProps): props is FileInputProps;
