import { EventHandler } from 'react';
type TTimeInputProps = {
    onChange: EventHandler<any>;
    min: string;
    className: string;
    theme: 'dark' | 'light';
};
export declare function TimeInput({ onChange, min, className, theme }: TTimeInputProps): import("react/jsx-runtime").JSX.Element;
export {};
