import React from 'react'; interface Props { /** * Allows to pass custom color * * @default 'theme.color.default.pink' */ color?: string; /** * Allows to pass a custom className */ className?: string; /** * Allows to pass testid string for testing purposes */ 'data-testid'?: string; /** * Allows to pass a label for screen readers */ label?: string; } /** @visibleName Pixel Loader */ declare const PixelLoader: ({ className, "data-testid": dataTestId, ...props }: Props) => React.JSX.Element; /** @component */ export default PixelLoader;