import * as React from 'react'; type LoaderVariant = 'bar' | 'dots'; interface LoaderProps extends Omit, 'children'> { /** * The animated shape. * @default 'bar' */ variant?: LoaderVariant; /** * Inherit the surrounding text color (`currentColor`) instead of the primary accent. * @default false */ currentColor?: boolean; } declare function Loader({ variant, currentColor, 'aria-label': ariaLabel, className, ...props }: LoaderProps): React.JSX.Element; export { Loader }; export type { LoaderProps }; //# sourceMappingURL=loader.d.ts.map