import { OnyxTimePickerProps } from './types.js'; export type Segment = "hours" | "minutes" | "seconds"; type TimePickerGroupProps = Pick & { /** * Group headline. */ headline: string; /** * Current value. */ modelValue?: string; /** * Which segment is currently focused. */ focusedSegment?: Segment; }; declare const __VLS_export: import('vue', { with: { "resolution-mode": "import" } }).DefineComponent any; jumpSegmentFocus: (direction: "previous" | "next") => any; "update:focusedSegment": (segment: Segment) => any; }, string, import('vue', { with: { "resolution-mode": "import" } }).PublicProps, Readonly & Readonly<{ "onUpdate:modelValue"?: ((value?: string | undefined) => any) | undefined; onJumpSegmentFocus?: ((direction: "previous" | "next") => any) | undefined; "onUpdate:focusedSegment"?: ((segment: Segment) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue', { with: { "resolution-mode": "import" } }).ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;