/**
 * @component OcLogo
 * @description A logo component that displays an image with specified source and alternative text.
 * @status ready
 * @release 7.3.0
 *
 * @props
 * @prop {string} src - The source URL of the logo image.
 * @prop {string} alt - The alternative text for the logo image.
 *
 * @example
 * <oc-logo src="src" alt="alt" />
 */
interface Props {
    src: string;
    alt: string;
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLImageElement>;
export default _default;
