import { ServerCheck, Parameter, ServerCheckInterface } from "./../index";
export interface TrustStoreServerCheckInterface extends ServerCheckInterface {
}
export declare class TrustStoreServerCheck extends ServerCheck implements TrustStoreServerCheckInterface, Parameter {
    constructor(data: any);
    static fromJson(data: any): TrustStoreServerCheck;
    toJson(): any;
    clone(): TrustStoreServerCheck;
}
