export declare const pkgCreator: import("@knapsack/creator-utils").Creator<{ readonly name: { readonly type: "text"; }; readonly version: { readonly type: "text"; readonly default: "1.0.0"; }; readonly isPublishable: { readonly type: "boolean"; readonly title: "Plan on publishing this package?"; readonly default: true; }; readonly exportType: { readonly type: "choice"; readonly title: "Export Type"; readonly choices: readonly [{ readonly value: "es"; readonly title: "ES Modules (using \"export\")"; }, { readonly value: "cjs"; readonly title: "CommonJS (using \"module.exports\")"; }, { readonly value: "universal"; readonly title: "Both"; }]; readonly default: "es"; }; }, import("@knapsack/creator-utils").KsAnswers<{ readonly name: { readonly type: "text"; }; readonly version: { readonly type: "text"; readonly default: "1.0.0"; }; readonly isPublishable: { readonly type: "boolean"; readonly title: "Plan on publishing this package?"; readonly default: true; }; readonly exportType: { readonly type: "choice"; readonly title: "Export Type"; readonly choices: readonly [{ readonly value: "es"; readonly title: "ES Modules (using \"export\")"; }, { readonly value: "cjs"; readonly title: "CommonJS (using \"module.exports\")"; }, { readonly value: "universal"; readonly title: "Both"; }]; readonly default: "es"; }; }>>; //# sourceMappingURL=pkg-creator.d.ts.map