import { type CwdOption } from '@alexaegis/fs'; import { type LoggerOption } from '@alexaegis/logging'; import type { InternalModuleFormat } from 'rollup'; export interface MakeJavascriptFilesExecutableOptions extends CwdOption, LoggerOption { format: InternalModuleFormat; packageJsonType: 'module' | 'commonjs'; } export type NormalizedMakeJavascriptFilesExecutableOptions = Required; export declare const normalizeMakeJavascriptFilesExecutableOptions: (options: MakeJavascriptFilesExecutableOptions) => NormalizedMakeJavascriptFilesExecutableOptions; //# sourceMappingURL=make-javascript-files-executable.function.options.d.ts.map