import { InputHTMLAttributes } from 'react';
import { type UseDateInputFormatterProps } from './useDateInputFormatter';
export interface FormattedInputProps extends Omit, 'onChange' | 'value'>, Pick {
/**
* A pre-formatted date string to preview when the input is empty and not focused.
* Used to show calendar hover preview in placeholder color.
*/
hoverValue?: string;
/**
* Placeholder to show when not focused and value is empty
*/
placeholder?: string;
/**
* The current value
*/
value?: string;
}
/**
* Formatted input component with mixed-color placeholder
*/
declare const FormattedInput: import("react").ForwardRefExoticComponent>;
export default FormattedInput;