import { type StateProp } from '@innet/dom'; import { Context } from '@innet/jsx'; import { type ActionProp } from '../../../utils'; import { type InputMaskProps } from '../InputMask'; export declare const inputDateApply: Context; export interface InputDateProps extends Omit { apply?: any; value?: StateProp; min?: Date; max?: Date; oninput?: ActionProp; } export declare function InputDate({ apply, value, oninput, min, max, ...props }: InputDateProps): any;