/// <reference types="react" />
import { ImageProps } from 'antd';
import { ImgProps } from "../../types";
type Logo3dProps = Omit<ImgProps & ImageProps, 'width' | 'height' | 'src'> & {
    size?: number | string;
};
declare const Logo3d: import("react").NamedExoticComponent<Logo3dProps>;
export default Logo3d;
