import React from 'react'; type Variant = 'icon' | 'avatar'; export type CirlectGraphicProps = { children: React.ReactElement; variant?: Variant; /** Used for custom backdrop rendering */ backdropElement?: React.ReactNode; backdropOpacity?: number; backdropScale?: number; }; export declare function CirlectGraphic(props: CirlectGraphicProps): JSX.Element; export {};