import { InputHTMLAttributes } from 'react';
import { TRawInput } from '../RawInput';
import { TTextAlignLC } from '../../../types/TTextAlignLC';
export type TNativeAttrs = Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'value'>;
export type TDateInput = {
    value?: string;
    align?: TTextAlignLC;
    type?: 'week' | 'date' | 'month' | 'time' | 'datetime-local' | 'datetime';
} & TRawInput;
export type TDateInputPropsWithNativeAttrs = TDateInput & TNativeAttrs;
