import { ComputedRef } from 'vue'; import { PanelProps, TimeList } from '../interface'; interface TimeListProps extends Pick { selectedHour: number | undefined; selectedMinute: number | undefined; selectedSecond: number | undefined; selectedAmpm: string; disabled?: boolean; } export default function useTimeList(props: TimeListProps): { hours: ComputedRef; minutes: ComputedRef; seconds: ComputedRef; ampmList: ComputedRef; }; export {};