import { type CwdOption } from '@alexaegis/fs'; import { type LoggerOption } from '@alexaegis/logging'; export declare const DEFAULT_STATIC_EXPORT_GLOBS: string[]; export interface AutoExportStaticOptions extends LoggerOption, CwdOption { /** * relative to cwd, this is where copied files will end up * @defaultValue 'dist' */ outDir?: string; /** * Relative to cwd, a folder whats content will be simply copied to * `outDir` and made available using simple, additional export statements. * Make sure their names don't overlap with other exports! * * @defaultValue ["readme.md", "static/\*\*", "export/**"] */ staticExportGlobs?: string[]; } export declare const normalizeAutoExportStaticOptions: (options: AutoExportStaticOptions) => Required; //# sourceMappingURL=auto-export-static.class.options.d.ts.map