import { ImgProps } from "../../types/index.mjs";
import { FC } from "react";
import { ImageProps } from "antd";

//#region src/brand/Logo3d/index.d.ts
type Logo3dProps = Omit<ImgProps & ImageProps, 'width' | 'height' | 'src'> & {
  size?: number | string;
};
declare const Logo3d: FC<Logo3dProps>;
//#endregion
export { Logo3d };
//# sourceMappingURL=index.d.mts.map