export declare class ApiGatewayClientSettings {
    ApiGatewayBaseUrl?: string;
    IsDEVMode?: boolean;
    UseCertificate?: boolean;
    CertificateSettings?: CertificateSettings;
}
export declare class CertificateSettings {
    PfxPath?: string;
    PrivateKeyPath?: string;
    Passphrase?: string;
}
