type JsonSchema = {
    fileMatch: string[];
    url: string;
};
type YamlSchema = Record<string, string>;
type Settings = {
    'json.schemas'?: JsonSchema[];
    'yaml.schemas'?: YamlSchema;
    'files.exclude'?: Record<string, boolean>;
    'yaml.schemaStore.enable'?: boolean;
};
export type { Settings };
export declare function addAutoSuggestion(): Promise<void>;
export declare function mergeRegressifySettings(settings: Settings): Settings;
