import { FlexboxProps } from "../../Flex/type.mjs";
import { CSSProperties, Ref } from "react";

//#region src/awesome/AuroraBackground/type.d.ts
interface AuroraBackgroundProps extends FlexboxProps {
  classNames?: {
    content?: string;
    wrapper?: string;
  };
  ref?: Ref<HTMLDivElement>;
  styles?: {
    content?: CSSProperties;
    wrapper?: CSSProperties;
  };
}
//#endregion
export { AuroraBackgroundProps };
//# sourceMappingURL=type.d.mts.map