import { type PropsWithChildren } from 'react'; /** @internal */ export interface IconShapeProps { active?: boolean; color?: string; } /** @internal */ export declare const IconShape: { ({ active, color, children, }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; };