import { TypedFlatConfigItem } from "../types.mjs"; //#region src/configs/sort.d.ts /** * Sort package.json * * Requires `jsonc` config */ declare function sortPackageJson(): TypedFlatConfigItem[]; /** * Sort tsconfig.json * * Requires `jsonc` config */ declare function sortTsconfig(): TypedFlatConfigItem[]; //#endregion export { sortPackageJson, sortTsconfig };