import { type CSSProperties } from 'react'; export type PaperCutLoaderProps = { /** Accessible status label. */ label?: string; /** Multiplier for the original 360 by 100 loader stage. */ scale?: number; /** Scissor blade color. */ blade?: string; /** Scissor handle color. */ shape?: string; /** Scissor rivet color. */ dot?: string; /** Paper and particle color. */ paper?: string; /** Stop GSAP and render a static loader. */ paused?: boolean; className?: string; style?: CSSProperties; }; export declare const PaperCutLoader: ({ label, scale, blade, shape, dot, paper, paused, className, style, }: PaperCutLoaderProps) => import("react/jsx-runtime").JSX.Element;