import type React from "react"; import type { ComponentVariant } from "../NDSProvider/ComponentVariantContext"; type TimePickerOptionProps = React.ComponentProps<"li"> & { variant?: ComponentVariant; isSelected: boolean; isFocused: boolean; isClosest: boolean; }; declare const TimePickerOption: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLLIElement>, TimePickerOptionProps>> & string; export default TimePickerOption;