import { Dictionary } from '@stoplight/types'; export declare enum StoplightConfigError { Syntax = "syntax", Validation = "validation", IO = "io" } export declare enum StoplightKnownPath { OAS = "openapi", Json_Schema = "json_schema", Image = "image", Markdown = "markdown" } export declare type FormatPaths = null | { rootDir: string; include?: string[]; }; export declare type TreeDefinition = { formats: T; }; export declare type StoplightConfig = { exclude?: string[]; formats?: Dictionary; trees?: Dictionary; };