import { ComponentProps } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; import { ResponsiveProp } from "../../styling"; declare const DefaultElement = "div"; export interface InnerSpinnerProps extends InternalProps, StyledComponentProps { /** * A spinner can vary in size. */ size?: ResponsiveProp<"sm" | "md" | "lg">; } export declare function InnerSpinner({ "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, as, children, forwardedRef, size, ...rest }: InnerSpinnerProps): JSX.Element; export declare namespace InnerSpinner { var defaultElement: string; } /** * A spinner indicates that a part of the product is currently performing a task, and the duration of this process is unknown. * * [Documentation](https://orbit.sharegate.design/?path=/docs/spinner--default-story) */ export declare const Spinner: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type SpinnerProps = ComponentProps; export {};