import type { ExecutorContext } from '@nx/devkit'; import type { LintExecutorSchema } from './schema.js'; export declare function lintExecutor(options: LintExecutorSchema, context: ExecutorContext): Promise<{ success: boolean; }>; export default lintExecutor;