import { SVGAttributes } from 'react';
export interface GlassSparklineProps extends SVGAttributes<SVGSVGElement> {
    data?: number[];
    width?: number;
    height?: number;
    stroke?: string;
    fill?: string;
    className?: string;
}
export declare function GlassSparkline({ data, width, height, stroke, fill, className, ...rest }: GlassSparklineProps): import("react/jsx-runtime").JSX.Element;
export default GlassSparkline;
//# sourceMappingURL=GlassSparkline.d.ts.map