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>>, "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;