import { WrapsSchema } from './wraps-schema.js';
export declare class TssSchema {
    messageSizeSoftLimitBytes: number;
    messageSizeHardLimitBytes: number;
    timeoutAfterReadySeconds: number;
    readyMaxAttempts: number;
    readyBackoffSeconds: number;
    wraps: WrapsSchema;
    constructor(messageSizeSoftLimitBytes?: number, messageSizeHardLimitBytes?: number, timeoutAfterReadySeconds?: number, readyMaxAttempts?: number, readyBackoffSeconds?: number, wraps?: WrapsSchema);
}
