import { HttpClient } from '../../http/'; import { Provider, Service, ServiceWhitelistData, Services } from './'; export declare class ServiceAPI { private readonly client; constructor(client: HttpClient); static readonly URL: { PROVIDERS: string; SERVICES: string; TEAMS: string; WHITELIST: string; WHITELISTED: string; }; getServices(limit?: number, start?: string, tags?: string[] | string): Promise; getTeamServices(teamId: string, limit?: number): Promise; getProvider(providerId: string): Promise; getProviderServices(providerId: string): Promise; getService(providerId: string, serviceId: string): Promise; postServiceWhitelist(teamId: string, whitelistData: ServiceWhitelistData): Promise; } //# sourceMappingURL=ServiceAPI.d.ts.map