import { EventEmitter } from '../../stencil.core'; import { GraphqlFetch } from '../../utils/graphqlFetch'; export declare class ManifoldDataDeprovisionButton { el: HTMLElement; /** _(hidden)_ Passed by `` */ graphqlFetch?: GraphqlFetch; disabled?: boolean; ownerId?: string; /** resource ID */ resourceId?: string; /** The label of the resource to deprovision */ resourceLabel?: string; loading?: boolean; click: EventEmitter; error: EventEmitter; success: EventEmitter; labelChange(newLabel: string): void; componentWillLoad(): void; deprovision(): Promise; fetchResourceId(resourceLabel: string): Promise; render(): any; }