import * as class_variance_authority_types from 'class-variance-authority/types'; import * as React from 'react'; import { VariantProps } from 'class-variance-authority'; declare const spinnerVariants: (props?: ({ show?: boolean | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; declare const loaderVariants: (props?: ({ size?: "small" | "medium" | "large" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; interface SpinnerContentProps extends VariantProps, VariantProps { className?: string; children?: React.ReactNode; } declare function Spinner({ size, show, children, className }: SpinnerContentProps): React.JSX.Element; declare namespace Spinner { var displayName: string; } export { Spinner };