import { type Cell } from './data'; import * as React from 'react'; export interface PixelLoaderProps { /** * Size of the loader in pixels. Multiples of 7 render evenly on the pixel grid. */ size?: number; /** * Whether the animation is playing. */ isPlaying?: boolean; /** * The icon or sequence of icons to display. These should be imported from * '@react-spectrum/ai/loader'. */ icon?: Cell[] | Cell[][]; /** * The color of the icon. * * @default 'currentColor' */ color?: string; /** * A custom CSS class to apply. */ className?: string; } export declare function PixelLoader(props: PixelLoaderProps): React.JSX.Element;