import React from 'react'; interface State { hovered?: boolean; focused?: boolean; } interface InteractionRingProps { darkMode?: boolean; className?: string; borderRadius?: string; color?: { focused?: string; hovered?: string; }; focusTargetElement?: HTMLElement | null; children: React.ReactElement; disabled?: boolean; forceState?: State; ignoreKeyboardContext?: boolean; } /** * @deprecated Prefer `tokens/hoverRing` & `tokens/focusRing` */ declare function InteractionRing({ darkMode, className, borderRadius, color, focusTargetElement, children, disabled, forceState, ignoreKeyboardContext, ...rest }: InteractionRingProps): JSX.Element; declare namespace InteractionRing { var displayName: string; } export default InteractionRing; //# sourceMappingURL=InteractionRing.d.ts.map