import { HTMLAttributes, default as React } from 'react';
export interface LoaderProps extends HTMLAttributes {
/**
* ID to find this component in testing tools (e.g.: cypress, testing library, and jest).
*/
testId?: string;
/**
* Specifies the component color variant.
*/
variant?: 'light' | 'dark';
}
declare const Loader: React.ForwardRefExoticComponent>;
export default Loader;
//# sourceMappingURL=Loader.d.ts.map