import { Component, PropsOf } from '@builder.io/qwik';
import type { LinkProps } from '@builder.io/qwik-city';
export type FooterBrandProps = PropsOf<'a'> & PropsOf<'img'> & {
    alt?: string;
    href?: string;
    name?: string;
    src: string;
    tag?: Component<LinkProps> | 'a';
};
export declare const FooterBrand: Component<FooterBrandProps>;
