export interface WireBox {
    iv: string;
    data: string;
    kid: string;
    ts: number;
}
export declare function toWireBox(combinedEncrypted: Buffer, kid: string, ts: number): WireBox;
export declare function fromWireBox(box: WireBox): Buffer;
export declare function isWireBox(value: unknown): value is WireBox;
