import type { ReactElement } from 'react'; import type { VariantShape } from './type.js'; interface ShapeIconProps { shape: VariantShape; color: string; } export declare function ShapeIcon(props: Readonly): ReactElement | null; export {};