import type { FC } from 'react'; import { type VariantProps } from 'class-variance-authority'; import type { TestableProps } from '../../utils/testId'; declare const loaderVariants: (props?: ({ size?: "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | null | undefined; color?: "primary" | "primary-alt" | "danger" | "primary-alt-fixed" | "brand" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type LoaderType = 'circle' | 'sonner'; type LoaderVariantsProps = VariantProps; interface LoaderBaseProps { type?: LoaderType; background?: boolean; } export type LoaderProps = LoaderBaseProps & LoaderVariantsProps & TestableProps; export declare const Loader: FC; export {};