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

//#region src/Block/type.d.ts
interface BlockProps extends FlexboxProps {
  clickable?: boolean;
  glass?: boolean;
  ref?: Ref<HTMLDivElement>;
  shadow?: boolean;
  variant?: 'filled' | 'outlined' | 'borderless';
}
//#endregion
export { BlockProps };
//# sourceMappingURL=type.d.mts.map