import { default as React } from 'react'; export interface FullPageSpinnerProps { /** Size of the spinner */ size?: 'small' | 'default' | 'large' | 'extraLarge'; /** Color variant */ variant?: 'default' | 'white' | 'success' | 'warning' | 'error'; /** Loading text to display (screen reader accessible) */ loadingText?: string; /** Show loading text visually below spinner */ showText?: boolean; /** Background style */ background?: 'transparent' | 'themed' | 'blur'; /** Additional className for the container */ className?: string; } /** * FullPageSpinner Component * * A centered, full-page loading spinner for route transitions and page loads. * * @example * ```tsx * // Simple usage * * * // With text * * * // With themed background * * ``` */ export declare const FullPageSpinner: React.FC; //# sourceMappingURL=full-page-spinner.d.ts.map