import type { XandrClient } from '..'; import type { DomainList, DomainListPostParameters, DomainListPutParameters } from './types'; export declare class XandrDomainListClient { private readonly client; private readonly endpoint; private readonly defaultHeaders; constructor(client: XandrClient); get(id: number): Promise; search(search: string): Promise; getAll(): Promise; create(props: DomainListPostParameters): Promise; modify(id: number, props: DomainListPutParameters): Promise; delete(id: number): Promise; }