import { ReactElement } from 'react'; declare const supportedMinuteSteps: readonly [1, 5, 10, 15, 20, 30, 60]; declare type MinuteStep = typeof supportedMinuteSteps[number]; export declare type PanelContentProps = { minuteStep: MinuteStep; onSelect: (val: Date) => void; resolvedValue: Date | undefined; with12Hours: boolean; withSeconds: boolean; }; declare const PanelContent: (props: PanelContentProps) => ReactElement; export default PanelContent;