import { FC, SVGProps } from 'react'; interface Props extends SVGProps { color?: string; size?: number; } declare const Clock: FC; export { Clock };