import { AxiosResponse } from 'axios'; import { LedgerDomain, LedgerPagedList } from "../../../types/src"; import { BaseListResponse } from '../common/types/list-response'; /** * Domains list API response. */ export declare class DomainsResponse extends BaseListResponse { /** * A flattened list of records, extracted from the `data` property of * each record returned. */ domains: LedgerDomain[]; constructor(response: AxiosResponse, void>); }