import { MarginProps } from "styled-system";
export interface StyledLoaderBarProps {
    /** Size of the LoaderBar. */
    size?: "small" | "medium" | "large";
}
declare const StyledLoader: import("styled-components").StyledComponent<"div", any, {
    theme: object;
} & StyledLoaderBarProps & MarginProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>>, "theme">;
declare const StyledLoaderBar: import("styled-components").StyledComponent<"div", any, StyledLoaderBarProps, never>;
declare const InnerBar: import("styled-components").StyledComponent<"div", any, StyledLoaderBarProps, never>;
export { InnerBar, StyledLoader };
export default StyledLoaderBar;
