import React, { PropsWithChildren } from 'react'; /** @public */ export type FeatureCalloutCircleClassKey = '@keyframes pulsateSlightly' | '@keyframes pulsateAndFade' | 'featureWrapper' | 'backdrop' | 'dot' | 'pulseCircle' | 'text'; export type Props = { featureId: string; title: string; description: string; }; /** * One-time, round 'telescope' animation showing new feature. * * @public * */ export declare function FeatureCalloutCircular(props: PropsWithChildren): React.JSX.Element;