export declare const swaggerDocument: {
    openapi: string;
    info: {
        title: string;
        version: string;
        description: string;
    };
    servers: {
        url: string;
        description: string;
    }[];
    paths: {
        "/run/{trailIdentifier}/{actionName}": {
            post: {
                summary: string;
                description: string;
                parameters: ({
                    in: string;
                    name: string;
                    required: boolean;
                    schema: {
                        type: string;
                        pattern: string;
                    };
                    description: string;
                } | {
                    in: string;
                    name: string;
                    required: boolean;
                    schema: {
                        type: string;
                        pattern?: undefined;
                    };
                    description: string;
                })[];
                requestBody: {
                    description: string;
                    required: boolean;
                    content: {
                        "application/json": {
                            schema: {
                                type: string;
                                additionalProperties: boolean;
                                example: {
                                    query: string;
                                    count: number;
                                };
                            };
                        };
                    };
                };
                responses: {
                    "200": {
                        description: string;
                        content: {
                            "application/json": {
                                schema: {
                                    type: string;
                                    properties: {
                                        result: {
                                            type: string;
                                            description: string;
                                            additionalProperties: boolean;
                                        };
                                    };
                                };
                            };
                        };
                    };
                    "400": {
                        description: string;
                        content: {
                            "application/json": {
                                schema: {
                                    type: string;
                                    properties: {
                                        error: {
                                            type: string;
                                        };
                                    };
                                };
                            };
                        };
                    };
                    "404": {
                        description: string;
                        content: {
                            "application/json": {
                                schema: {
                                    type: string;
                                    properties: {
                                        error: {
                                            type: string;
                                        };
                                    };
                                };
                            };
                        };
                    };
                    "500": {
                        description: string;
                        content: {
                            "application/json": {
                                schema: {
                                    type: string;
                                    properties: {
                                        error: {
                                            type: string;
                                        };
                                    };
                                };
                            };
                        };
                    };
                    "503": {
                        description: string;
                        content: {
                            "application/json": {
                                schema: {
                                    type: string;
                                    properties: {
                                        error: {
                                            type: string;
                                        };
                                    };
                                };
                            };
                        };
                    };
                };
            };
        };
    };
};
