import { FlexboxProps } from "../../Flex/type.mjs";
import { DivProps } from "../../types/index.mjs";

//#region src/awesome/GridBackground/type.d.ts
interface GridBackgroundProps extends DivProps {
  animation?: boolean;
  animationDuration?: number;
  backgroundColor?: string;
  colorBack?: string;
  colorFront?: string;
  flip?: boolean;
  random?: boolean;
  reverse?: boolean;
  showBackground?: boolean;
  strokeWidth?: number;
}
interface GridShowcaseProps extends FlexboxProps {
  backgroundColor?: GridBackgroundProps['backgroundColor'];
  innerProps?: FlexboxProps;
}
//#endregion
export { GridBackgroundProps, GridShowcaseProps };
//# sourceMappingURL=type.d.mts.map