import type { StyleType } from '@boost/cli'; import type { ArtifactState, BrowserFormat, Format, NativeFormat, NodeFormat, Platform, Support } from './types'; export declare const TEXT_ASSETS: string[]; export declare const BINARY_ASSETS: string[]; export declare const ASSETS: string[]; export declare const EXTENSIONS: string[]; export declare const EXCLUDE: string[]; export declare const EXCLUDE_RUST: string[]; export declare const NATIVE_TARGETS: { [K in Support]: string; }; export declare const NODE_SUPPORTED_VERSIONS: { [K in Support]: string; }; export declare const NPM_SUPPORTED_VERSIONS: { [K in Support]: string; }; export declare const BROWSER_TARGETS: { [K in Support]: string[] | string; }; export declare const ELECTRON_TARGETS: { [K in Support]: string; }; export declare const SUPPORT_TO_ESM_SPEC: { readonly legacy: "es2019"; readonly stable: "es2020"; readonly current: "es2021"; readonly experimental: "es2022"; }; export declare const STATE_COLORS: { [K in ArtifactState]?: StyleType; }; export declare const DEFAULT_FORMATS: Record; export declare const FORMATS_BROWSER: BrowserFormat[]; export declare const FORMATS_ELECTRON: BrowserFormat[]; export declare const FORMATS_NATIVE: NativeFormat[]; export declare const FORMATS_NODE: NodeFormat[]; export declare const FORMATS: Format[]; export declare const DEFAULT_INPUT = "src/index.ts"; export declare const DEFAULT_PLATFORM: Platform; export declare const PLATFORMS: Platform[]; export declare const DEFAULT_SUPPORT: Support; export declare const SUPPORTS: Support[]; export declare const SUPPORT_PRIORITY: Record; //# sourceMappingURL=constants.d.ts.map