import { InputControlProperties } from '@jaspersoft/jv-tools';
export type TimePickerICType = "material";
export interface TimeICProps extends InputControlProperties {
    className?: string;
    views?: Array<"hours" | "minutes" | "seconds">;
    disabled?: boolean;
}
export declare const TimePickerInputControl: (props: TimeICProps) => import("react/jsx-runtime").JSX.Element;
