/**
 * Stoplight node types
 */
export declare enum NodeType {
    Article = "article",
    HttpService = "http_service",
    HttpServer = "http_server",
    HttpOperation = "http_operation",
    Model = "model",
    Generic = "generic",
    Unknown = "unknown",
    TableOfContents = "table_of_contents",
    SpectralRuleset = "spectral_ruleset"
}
/**
 * Node data formats
 */
export declare enum NodeFormat {
    Json = "json",
    Markdown = "markdown",
    Yaml = "yaml"
}
