import type { Category } from '../../../constants';
import type { RangeStrategy } from '../../../types';
import type { PackageFileContent, RangeConfig } from '../types';
export declare const defaultConfig: {
    managerFilePatterns: string[];
    pinDigests: boolean;
};
export declare const categories: Category[];
export declare const supportedDatasources: string[];
export declare function extractPackageFile(content: string): PackageFileContent;
export declare function getRangeStrategy({ rangeStrategy, }: RangeConfig): RangeStrategy;
