import type { Target } from '@markuplint/file-resolver';
import type { Violation } from '@markuplint/ml-config';
export declare const sync: {
    readonly markuplintSync: (target: Target, fix?: boolean | undefined) => {
        violations: Violation[];
        fixedCode: string;
    };
};
