import { BaseService } from '../infrastructure'; import { RequestOptions } from '../infrastructure/RequestHelper'; interface PagesDomainsOptions { projectId?: ProjectId; } declare class PagesDomains extends BaseService { all({ projectId }?: PagesDomainsOptions): Promise; create(projectId: ProjectId, domain: string, options: RequestOptions): Promise; edit(projectId: ProjectId, domain: string, options: RequestOptions): Promise; show(projectId: ProjectId, domain: string): Promise; remove(projectId: ProjectId, domain: string): Promise; } export default PagesDomains;