import { EventEmitter } from '../../stencil.core'; import { GraphqlFetch } from '../../utils/graphqlFetch'; export declare class ManifoldDataSsoButton { el: HTMLElement; /** _(hidden)_ */ graphqlFetch?: GraphqlFetch; disabled?: boolean; ownerId?: string; /** The label of the resource to rename */ resourceLabel?: string; /** The id of the resource to rename, will be fetched if not set */ resourceId?: string; loading?: boolean; click: EventEmitter; error: EventEmitter; success: EventEmitter; componentWillLoad(): void; sso: () => Promise; render(): any; }