import { type SVGProps } from 'react'; export type LocalTimeClockIconProps = Omit, 'children'> & { title?: string; date?: Date; live?: boolean; faceClassName?: string; hourHandClassName?: string; minuteHandClassName?: string; }; export declare const LocalTimeClockIcon: ({ className, title, date, live, faceClassName, hourHandClassName, minuteHandClassName, width, height, role, "aria-hidden": ariaHidden, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, ...props }: LocalTimeClockIconProps) => import("react/jsx-runtime").JSX.Element;