import React from 'react'; interface Props { className?: string; clip: number; color: string; opacity?: string; height: number; width: number; } export declare function ClippedRing({ className, clip, color, opacity, height, width }: Props): React.JSX.Element; export {};