export declare const EDITORCONFIG = "root = true\n\n[*]\nindent_style = space\nindent_size = 2\nend_of_line = lf\ncharset = utf-8\ntrim_trailing_whitespace = true\ninsert_final_newline = true\n\n[*.md]\ntrim_trailing_whitespace = false\n"; export declare const PRETTIERRC = "{\n \"semi\": true,\n \"singleQuote\": true,\n \"trailingComma\": \"all\",\n \"tabWidth\": 2,\n \"printWidth\": 100\n}\n"; export declare const PRETTIERIGNORE = "node_modules\ndist\n.next\nbuild\n.pnpm-store\n*.env\n*.log\npnpm-lock.yaml\ncoverage\n"; export declare const COMMITLINT_CONFIG = "module.exports = {\n extends: ['@commitlint/config-conventional'],\n};\n";