import { InputControlProperties } from '@jaspersoft/jv-tools';
export type DatePickerICType = "material";
export interface DateICProps extends InputControlProperties {
    className?: string;
    views?: Array<"year" | "month" | "day">;
    disabled?: boolean;
}
export declare const DatePickerInputControl: (props: DateICProps) => import("react/jsx-runtime").JSX.Element;
