import { EventEmitter } from '../../stencil.core'; import { GraphqlFetch } from '../../utils/graphqlFetch'; export declare class ManifoldCopyCredentials { el: HTMLElement; /** _(hidden)_ Passed by `` */ graphqlFetch?: GraphqlFetch; /** The label of the resource to fetch credentials for */ resourceLabel?: string; ownerId?: string; credentials?: string; error: EventEmitter; success: EventEmitter; labelChange(): void; componentWillLoad(): void; componentDidLoad(): void; refresh(): Promise; private handleClick; render(): any; }