import { type CSSProperties } from 'react'; export type GooeyTriangleLoaderProps = { label?: string; size?: number | string; duration?: number; paused?: boolean; strokeWidth?: number; blobRadius?: number; className?: string; style?: CSSProperties; }; declare const GooeyTriangleLoader: ({ label, size, duration, paused, strokeWidth, blobRadius, className, style, }: GooeyTriangleLoaderProps) => import("react/jsx-runtime").JSX.Element; export { GooeyTriangleLoader };