import { EventEmitter } from '../../stencil.core'; import { GraphqlFetch } from '../../utils/graphqlFetch'; export declare class ManifoldDataHasResource { el: HTMLElement; /** _(hidden)_ Passed by `` */ graphqlFetch?: GraphqlFetch; /** Disable auto-updates? */ label?: string; /** Adjust poll frequency */ pollInterval?: number; ownerId?: string; paused?: boolean; poll?: number; hasResource?: boolean; loadEvent: EventEmitter; pausedChange(newPaused: boolean): void; componentWillLoad(): void; componentDidUnload(): void; makeInterval(): void; fetchResources(label?: string | undefined): Promise; render(): any; }