import { type ComponentType } from 'react';
import { type InputProps } from '../Input/index.js';
export interface FocusInputProps extends InputProps {
    Component?: ComponentType<InputProps>;
}
export declare const FocusInput: ({ Component, className, style, placeholder, value, onFocus, onBlur, ...props }: FocusInputProps) => import("react/jsx-runtime").JSX.Element;
