import { InputFieldProps } from "./InputField";
/**
 * Mobile input props
 */
export type MobileInputProps = Omit<InputFieldProps, "type"> & {};
/**
 * Mobile input
 * @param props Props
 */
export declare function MobileInput(props: MobileInputProps): import("react/jsx-runtime").JSX.Element;
