interface TimeDateSelectorProps { type?: 'time' | 'date'; value?: string; onChange: (value: string) => void; } export declare function TimeDateSelector(props: TimeDateSelectorProps): import("react/jsx-runtime").JSX.Element; export {};