/** Application Context Mode. */ export type Mode = 'prod' | 'dev'; /** Augmenting Interface. */ export interface IAugmentation { extension?: `.${string}`; resolver?: (filePath: string) => string; } /** Ascertains the current running of the file. */ export declare const mode: () => Mode; /** * Coordinates augmenting the process for launching "bytenode" files. * @param options Augmentation options. */ export declare const augment: (options?: IAugmentation) => void;