import { BaseSyntaxErrorDetailsExtractor } from './BaseSyntaxErrorDetailsExtractor';
import { YAMLException } from 'js-yaml';
export declare class YamlSyntaxErrorDetailsExtractor extends BaseSyntaxErrorDetailsExtractor<YAMLException> {
    private readonly LOCATION_PATTERN;
    protected extractMessage(error: YAMLException): string;
    protected extractOffset(error: YAMLException): number | undefined;
    protected extractSnippet(error: YAMLException): string;
}
