import { GraphqlFetch } from '../../utils/graphqlFetch'; interface ProductState { logoUrl: string; displayName: string; } export declare class ManifoldDataResourceLogo { el: HTMLElement; /** _(optional)_ `alt` attribute */ alt?: string; /** _(hidden)_ */ graphqlFetch?: GraphqlFetch; ownerId?: string; /** Look up product logo from resource */ resourceLabel?: string; product?: ProductState; resourceChange(newResource: string): void; componentWillLoad(): void; fetchResource: (resourceLabel?: string | undefined) => Promise; render(): any; } export {};