declare type BackgroundPositionValue = 'top' | 'right' | 'left' | 'middle'; export declare type BackgroundProps = { background: string; backgroundImage: string; backgroundSize: 'contain' | 'cover'; backgroundRepeat: 'repeat' | 'no-repeat'; backgroundPosition: BackgroundPositionValue | [BackgroundPositionValue, BackgroundPositionValue]; }; export declare type OptionalBackgroundProps = Partial; export declare const BackgroundStyles: import("styled-components").FlattenInterpolation, import("./base").ThemeInterface>>[]; export {};