import type { CSSProperties } from 'react'; import type { ExtendedColor } from '../../theme'; import { SIZES } from './constants'; type LoaderProps = { active?: boolean; sentiment?: ExtendedColor; percentage?: number; size?: keyof typeof SIZES; /** * Label should be defined for accessibility, to indicate what is loading */ label?: string; style?: CSSProperties; }; export declare function Loader({ percentage, size, sentiment, active, label, style, }: LoaderProps): import("react").JSX.Element; export declare namespace Loader { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map