import { ResourceCredentialsQuery } from '../../types/graphql'; import { GraphqlFetch, GraphqlError } from '../../utils/graphqlFetch'; export declare class ManifoldCredentials { el: HTMLElement; /** _(hidden)_ */ graphqlFetch?: GraphqlFetch; noCredentials?: boolean; ownerId?: string; resourceLabel?: string; credentials?: ResourceCredentialsQuery['resource']['credentials']['edges']; errors?: GraphqlError[]; loading?: boolean; shouldTransition: boolean; componentWillLoad(): void; hideCredentials: () => void; showCredentials(): Promise; credentialsRequested: () => void; render(): any; }