import { IKeyPair_Jwk } from '@ne1410s/crypto'; import { AccountRequest } from '../account/base'; export declare class UpsertOrderRequest extends AccountRequest { accountId: number; keys: IKeyPair_Jwk; token: string; domains: Array; startsOn?: Date; endsOn?: Date; } export declare class DomainIdentfier { type: string; value: string; } export declare class UpsertOrderPayload { identifiers: Array; notBefore?: string; notAfter?: string; }