export type LinterOptions = { project: string; entityFQN?: string; }; export type LinterProblem = { file: string; message: string; level: 'error' | 'warning'; line: number | undefined; }; export default function (options: LinterOptions): Promise;