export declare const AuthorizedGatewaysSchema: {
    $schema: string;
    title: string;
    type: string;
    properties: {
        data: {
            type: string;
            title: string;
            items: {
                type: string;
                title: string;
                properties: {
                    gatewayUrl: {
                        type: string;
                        title: string;
                        maxLength: number;
                    };
                    authorizationSignature: {
                        type: string;
                        title: string;
                        maxLength: number;
                    };
                };
            };
        };
    };
    required: string[];
};
//# sourceMappingURL=AuthorizedGatewaysSchema.d.ts.map