export type CheckUnreleasedOpts = {
    changelogFile: string;
};
export declare function parseArgs(args: Array<string>): CheckUnreleasedOpts;
export declare function checkUnreleasedFromCliArgs(args: Array<string>): Promise<boolean>;
export declare function checkUnreleased(opts: CheckUnreleasedOpts): Promise<boolean>;
