declare const CircularContentLoader: ({ width, height, backgroundColor, foregroundColor, animate, index, style, }: { height: number; width: number; animate?: boolean; backgroundColor?: string; foregroundColor?: string; /** Used for stable `data-testid` (`circular-loader-{index}`) when set. */ index?: number; style?: React.CSSProperties; }) => import("react/jsx-runtime").JSX.Element; export default CircularContentLoader;