import { ComponentInterface } from '../../stencil.core'; export declare class AsyncContent implements ComponentInterface { documentLocation?: string; content: string; componentWillLoad(): Promise | undefined; fetchNewContent(newDocumentLocation: string): Promise; render(): any; }