import { MuiPickersAdapter } from '../models'; import { MultiSectionDigitalClockOption } from './MultiSectionDigitalClock.types'; interface IGetHoursSectionOptions { now: TDate; value: TDate | null; utils: MuiPickersAdapter; ampm: boolean; isDisabled: (value: number) => boolean; timeStep: number; resolveAriaLabel: (value: string) => string; } export declare const getHourSectionOptions: ({ now, value, utils, ampm, isDisabled, resolveAriaLabel, timeStep, }: IGetHoursSectionOptions) => MultiSectionDigitalClockOption[]; interface IGetTimeSectionOptions { value: number | null; utils: MuiPickersAdapter; isDisabled: (value: number) => boolean; timeStep: number; resolveLabel: (value: number) => string; hasValue?: boolean; resolveAriaLabel: (value: string) => string; } export declare const getTimeSectionOptions: ({ value, utils, isDisabled, timeStep, resolveLabel, resolveAriaLabel, hasValue, }: IGetTimeSectionOptions) => MultiSectionDigitalClockOption[]; export {};