import React from "react"; import type { SpaceProps } from "styled-system"; import { type ComponentVariant } from "../NDSProvider/ComponentVariantContext"; type TimePickerProps = SpaceProps & { variant?: ComponentVariant; disabled?: boolean; value?: string; timeFormat?: string; interval?: number; placeholder?: string; className?: string; onChange?: (...args: any[]) => any; onInputChange?: (...args: any[]) => any; minTime?: string; maxTime?: string; defaultValue?: string; "aria-label"?: string; errorMessage?: string; errorList?: React.ReactNode; labelText?: string; ref?: any; onBlur?: (...args: any[]) => any; onFocus?: (...args: any[]) => any; onClick?: (...args: any[]) => any; }; export declare const convertTo24HourTimeArray: (timeInput: any) => any; export declare const getBestMatchTime: ({ time, timeFormat, minTime, maxTime, locale }: { time: any; timeFormat: any; minTime: any; maxTime: any; locale: any; }) => { value: string; label: string; }; export declare const getTimeOptions: (interval: any, timeFormat: any, minTime: any, maxTime: any, locale: any) => { value: string; label: string; }[]; declare const TimePicker: React.ForwardRefExoticComponent & React.RefAttributes>; export default TimePicker;