import { ComponentPropsWithoutRef, PropsWithChildren } from 'react'; export interface LoaderProps extends ComponentPropsWithoutRef<"div"> { isActive?: boolean; color?: string; icon?: string; iconset?: string; } export declare function Loader({ isActive, color, icon, iconset, className, ...props }: PropsWithChildren): import("react/jsx-runtime").JSX.Element | null;