declare type Props = { color: string; }; declare const Circle: ({ color }: Props) => string; export default Circle;