//#region src/init/index.d.ts
type InitOptions = {
  cwd: string;
};
declare function init({
  cwd
}: InitOptions): Promise<void>;
//#endregion
export { InitOptions, init };