import { IPostprocessDependencies } from "./postprocess";
export interface IBudgieProjectMetadata {
    /**
     * Name of the overall project author.
     */
    author: string;
    /**
     * Friendly sentence describing the project.
     */
    description: string;
    /**
     * Contact email for the project.
     */
    email: string;
    /**
     * Shorthand name for the license type.
     */
    license: string;
    /**
     * Package.Upper.Case name of the project.
     */
    name: string;
    /**
     * Source control system storing file history.
     */
    repositoryType: string;
    /**
     * Website where the project is hosted.
     */
    url: string;
    /**
     * Major.Minor.Patch semantic version.
     */
    version: string;
}
export declare const createLanguageMetadataFiles: (dependencies: IPostprocessDependencies) => Promise<void>;
