import type { Rule } from 'eslint'; import type { Options } from 'prettier'; export declare const runPrettierAndReportDifferences: ({ context, offset, options, source, }: { context: Rule.RuleContext; offset?: number | undefined; options: Options; source: string; }) => void;