import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { SystemProps } from "../system/system.js";
import "../system/index.js";
//#region src/image/image.types.d.ts
type ImageProps = SystemProps & ThemingProps<'Image'> & {
  /** Children are disabled for this component. */
  children?: never;
};
//#endregion
export { ImageProps };

//# sourceMappingURL=image.types.d.ts.map