import { Interfaces } from '@oclif/core';
export type PjsonWithInfo = {
    oclif: Interfaces.PJSON['oclif'] & {
        info: InfoConfig;
    };
} & Interfaces.PJSON;
export type InfoConfig = {
    releasenotes: {
        distTagUrl: string;
        releaseNotesPath: string;
        releaseNotesFilename: string;
    };
};
export declare const getInfoConfig: (path: string) => Promise<InfoConfig>;
declare const _default: {
    getInfoConfig: (path: string) => Promise<InfoConfig>;
};
export default _default;
