export type InitConfig = { /** File glob patterns to include in the package and use as selector for filesets. */ files?: string[]; /** * Optional config filename to embed in the generated bin shim so consumers use a * named config file (e.g. `.mypackage.yml`) instead of the default `.filedist.yml`. */ baseConfigFile?: string; }; /** * Scaffold or update a publishable npm data package. * If package.json already exists, updates it in place. * Creates bin/filedist.js if it does not already exist. * Writes .filedist-package.yml with the sets configuration. */ export declare function actionInit(outputDir: string, verbose: boolean, config?: InitConfig): Promise; //# sourceMappingURL=action-init.d.ts.map