import type { CoConfigPassthroughEntry } from 'coconfig'; import { tsconfig, tsconfigBuild } from './tsconfig'; interface OtiCoConfig { '.eslintignore': string; '.npmignore': string; 'tsconfig.json': CoConfigPassthroughEntry; 'tsconfig.build.json': CoConfigPassthroughEntry; 'vitest.config.ts'?: CoConfigPassthroughEntry; '.prettierrc.js'?: CoConfigPassthroughEntry; '.eslintrc.js'?: CoConfigPassthroughEntry; '.prettierrc.cjs'?: CoConfigPassthroughEntry; '.eslintrc.cjs'?: CoConfigPassthroughEntry; '.commitlintrc.json': CoConfigPassthroughEntry; } export declare const config: OtiCoConfig; export default config;