///
interface DecoratorTypes {
children?: React.ReactNode;
className?: string;
x: number;
y: number;
radius: number;
padding?: number;
showBackground?: boolean;
icon?: React.ReactNode;
onClick?(event: React.MouseEvent): void;
ariaLabel?: string;
circleRef?: React.Ref;
innerRef?: React.Ref;
}
declare const Decorator: React.FunctionComponent;
export default Decorator;
//# sourceMappingURL=Decorator.d.ts.map