export interface IBundleSide { entry: string; } export interface IBundleConfig { /** A bundle can be client-only, server-only, or have one entry on each side. */ client?: IBundleSide; server?: IBundleSide; enable: boolean; } export interface IBoxCreatorConfig { bundles: Record; } export interface IUploadBundleOptions { outDir: string; target?: 'client' | 'server' | string; env: Record; } export declare function creatorApiBase(value: string): string;