import { TimeOption } from './TimePickerOptions'; export interface TimeChipRowProps { unit: string; options: TimeOption[]; selectedValue?: number; disabled?: boolean; onChange: (value: number) => void; } export declare const TimeChipRow: ({ unit, options, selectedValue, disabled, onChange }: TimeChipRowProps) => import("@emotion/react/jsx-runtime").JSX.Element;