import { Plan } from '../../types/graphql'; import { GraphqlFetch } from '../../utils/graphqlFetch'; export declare class ManifoldPlan { el: HTMLElement; /** _(hidden)_ */ graphqlFetch?: GraphqlFetch; hideUntilReady?: boolean; planId?: string; plan?: Plan; planChange(newPlan: string): void; componentWillLoad(): Promise | undefined; fetchPlan(planId: string): Promise; render(): any; }