import React from 'react'; export type CirlectContextValue = { value?: any; /** Callback fired when the Cirlect value changes */ onChange?: (event: React.MouseEvent, newValue: any) => void; variant?: 'default' | 'grid'; }; export declare const CirlectContext: React.Context;