import { config as importedConfig } from 'typescript-eslint'; /** * Utility function to make it easy to strictly type your "Flat" config file * @example * ```js * // @ts-check * * import eslint from '@eslint/js'; * import tseslint from 'typescript-eslint'; * * export default tseslint.config( * eslint.configs.recommended, * tseslint.configs.recommended, * { * rules: { * '@typescript-eslint/array-type': 'error', * }, * }, * ); * ``` */ declare const config: typeof importedConfig; export { config }; //# sourceMappingURL=helpers.d.mts.map