import { VuiTheme } from "../theme/types.js";
import "../theme/index.js";
import { ColorGetter } from "./colors.js";
import { SystemProp } from "@xstyled/system";
//#region src/system/backgrounds.d.ts
type BackgroundColorProp = SystemProp<ColorGetter, VuiTheme>;
type BackgroundColorProps = {
  activeBg?: BackgroundColorProp;
  bg?: BackgroundColorProp;
  disabledBg?: BackgroundColorProp;
  hoverBg?: BackgroundColorProp;
};
type BackgroundsProps = BackgroundColorProps;
//#endregion
export { BackgroundColorProps, BackgroundsProps };

//# sourceMappingURL=backgrounds.d.ts.map