import { default as React } from 'react'; import { InputRef } from '../../../shared/types/input'; import { InputSize } from '../../../shared/types/types'; export interface DateTimeReadOnlyInputProps { /** Fecha y hora confirmadas mostradas en el campo (solo lectura). */ value: Date | null; /** Texto mostrado en lugar de formatear `value` (p. ej. rango datetime). */ displayValue?: string; placeholder?: string; isOpen: boolean; onInputClick: () => void; className?: string; disabled?: boolean; label?: string; size?: InputSize; showSeconds?: boolean; } /** * Campo de fecha y hora de solo lectura; abre el popup al hacer clic en el input o en el icono. * * La edición ocurre únicamente en el popup (calendario + {@link TimePickerPanel}). * * @example * ```tsx * * ``` */ export declare const DateTimeReadOnlyInput: React.ForwardRefExoticComponent>; //# sourceMappingURL=DateTimeReadOnlyInput.d.ts.map