declare const outputPresetsJsonSchema: {
    type: string;
    items: {
        type: string;
        properties: {
            route_name: {
                type: string;
            };
            api_version: {
                type: string;
            };
            route: {
                type: string;
            };
            url_query_params: {
                type: string;
            };
            note: {
                type: string;
            };
        };
    };
};
export { outputPresetsJsonSchema };
