export interface IBackground { backgroundColor: string; backgroundImage: string; backgroundSize: "cover" | "contain" | "auto"; backgroundRepeat: "repeat" | "repeat-x" | "repeat-y" | "no-repeat"; backgroundPositionX: string | number; backgroundPositionY: string | number; }