export interface ShapesProps { variant?: "circle" | "rectangle" | "triangle"; fill?: string; } declare const Shapes: ({ variant, fill }: ShapesProps) => import("react/jsx-runtime").JSX.Element; export default Shapes;