import { IToken } from '../token/base'; import { DomainIdentfier } from './upsert'; export declare class OrderRequest { accountId: number; orderId: number; } export declare class OrderResponse { orderId: number; status: string; orderUrl: string; certificateUrl?: string; expires: Date; identifiers: Array; authCodes: Array; finaliseUrl: string; } export declare class ActiveOrderResponse extends OrderResponse implements IToken { token: string; }