import { type HTMLAttributes, type Ref } from 'react';
export type ShapeBlurProps = Omit, 'children'> & {
borderSize?: number;
circleEdge?: number;
circleSize?: number;
pixelRatioProp?: number;
ref?: Ref;
roundness?: number;
shapeSize?: number;
variation?: number;
};
export declare const ShapeBlur: ({ borderSize, circleEdge, circleSize, className, pixelRatioProp, ref, roundness, shapeSize, style, variation, ...props }: ShapeBlurProps) => import("react/jsx-runtime").JSX.Element;