import React from 'react'; import { CirlectContextValue } from './CirlectContext'; import { BoxProps } from '../Box'; export type CirlectProps = Omit, 'onChange'> & CirlectContextValue & BoxProps; /** * Cirlect is used to display images in circle with a label, that can be selected.
* It consists of CirlectGraphic and CirlectItem components. * */ export declare function Cirlect(props: CirlectProps): JSX.Element;