import type { Lang } from "../utils/lang"; type InitPluginOptions = { /** project name passed by CLI argument (undefined if not specified) */ name?: string; lang: Lang; template: string; }; /** * Run create-kintone-plugin script */ export declare const initPlugin: (options: InitPluginOptions) => Promise; export {};