/** * UtimeUslotUpicker Component * * A reusable UtimeUslotUpicker component with full dark mode support. * Optimized for accessibility and AI-assisted development. * * @component * @example * ```tsx * * ``` * * @remarks * This component supports: * - Light and dark themes automatically * - Responsive design * - Accessibility features * - TypeScript type safety * * @see {@link https://docs.example.com/components/time-slot-picker} */ export interface UtimeUslotUpickerProps { /** Additional CSS classes */ className?: string; /** Component children */ children?: React.ReactNode; /** Disabled state */ disabled?: boolean; /** Callback when component is interacted with */ onClick?: () => void; } export declare const UtimeUslotUpicker: ({ className, children, disabled, onClick, }: UtimeUslotUpickerProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=time-slot-picker.d.ts.map