import { alphabeticalSortObject } from "./sort"; import { Options } from "."; declare function bugs(bugs: string | object): unknown; declare function author(author: string | object, opts: Options): string | { [key: string]: any; }; declare function contributors(contributors: Array, opts: Options): (string | { [key: string]: any; })[]; declare function bin(bin: string | { [key: string]: any; }, pkg: { [key: string]: any; }): any; declare function directories(directories: object): { [key: string]: any; }; declare function repository(repo: string | { [key: string]: any; }, opts: Options, pkg: { [key: string]: any; }): string | object; declare function scripts(scripts: object, opts: Options): object; declare function engines(engines: object): { [key: string]: any; }; declare const _default: { bugs: typeof bugs; author: typeof author; contributors: typeof contributors; bin: typeof bin; directories: typeof directories; repository: typeof repository; scripts: typeof scripts; dependencies: typeof alphabeticalSortObject; devDependencies: typeof alphabeticalSortObject; peerDependencies: typeof alphabeticalSortObject; optionalDependencies: typeof alphabeticalSortObject; engines: typeof engines; }; export default _default;