import * as React from 'react'; export interface LoadingProps extends React.HTMLAttributes { /** Size variant */ size?: 'sm' | 'md' | 'lg'; /** Loading message */ message?: string; /** Center in container */ center?: boolean; } /** * Loading - Spinner and loading states * * Displays an animated spinner with optional message. * Use for indicating loading states in your application. */ export declare const Loading: React.ForwardRefExoticComponent>; //# sourceMappingURL=Loading.d.ts.map