type MdatReadmeInitOptions = {
    compound: boolean;
    expand: boolean;
    output: string;
    overwrite: boolean;
    template: string;
};
/**
 * Initializes a new readme file interactively.
 * @returns Path to the created readme file.
 */
export declare function initReadmeInteractive(): Promise<string>;
/**
 * Creates a new readme file with the given options.
 * @returns Path to the created readme file.
 */
export declare function initReadme(options?: Partial<MdatReadmeInitOptions>): Promise<string>;
export {};
