import { ConnectorInterface, Permission, App, Repo, Role } from '@aragon/connect-core'; import GraphQLWrapper from './core/GraphQLWrapper'; export declare type ConnectorTheGraphConfig = { daoSubgraphUrl?: string; verbose?: boolean; }; export default class ConnectorTheGraph extends GraphQLWrapper implements ConnectorInterface { constructor({ daoSubgraphUrl, verbose, }?: ConnectorTheGraphConfig); rolesForAddress(appAddress: string): Promise; permissionsForOrg(orgAddress: string): Promise; appsForOrg(orgAddress: string): Promise; appByAddress(appAddress: string): Promise; repoForApp(appAddress: string): Promise; } //# sourceMappingURL=connector.d.ts.map