/** * Exception raised when the "pattern" property is missing in a metafile entry. * Metafiles define file patterns for copying or watching operations. */ export declare const E_MISSING_METAFILE_PATTERN: new (args: [fileProperty: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception; /** * Exception raised when the "file" property is missing in a preload entry. * Preload entries must specify a file property containing an import function. */ export declare const E_MISSING_PRELOAD_FILE: new (args: [preloadProperty: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception; /** * Exception raised when the "file" property in a preload entry is not a function. * The file property must be a dynamic import function that returns a module. */ export declare const E_INVALID_PRELOAD_FILE: new (args: [preloadProperty: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception; /** * Exception raised when the "file" property is missing in a provider entry. * Provider entries must specify a file property containing an import function. */ export declare const E_MISSING_PROVIDER_FILE: new (args: [preloadProperty: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception; /** * Exception raised when the "file" property in a provider entry is not a function. * The file property must be a dynamic import function that returns a provider class. */ export declare const E_INVALID_PROVIDER: new (args: [preloadProperty: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception; /** * Exception raised when the "name" property is missing in a test suite entry. * Test suites must have a unique name identifier. */ export declare const E_MISSING_SUITE_NAME: new (args: [suiteProperty: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception; /** * Exception raised when the "files" property is missing in a test suite entry. * Test suites must specify which files or patterns to include. */ export declare const E_MISSING_SUITE_FILES: new (args: [suiteProperty: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception; /** * Exception raised when a hook is defined for an unknown assembler event. * Only predefined assembler events support hooks. */ export declare const E_UNKNOWN_ASSEMBLER_HOOK: new (args: [eventName: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception; /** * Exception raised when hooks for an event are not specified as an array. * Hooks must be provided as an array of dynamic import functions. */ export declare const E_INVALID_HOOKS_VALUE: new (args: [eventName: string, value: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception; /** * Exception raised when the presets property is not an array. * Presets must be provided as an array of configuration functions. */ export declare const E_INVALID_PRESETS_VALUE: new (args: [value: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception; /** * Exception raised when a preset at a specific index is not a function. * Each preset must be a function that modifies the RC file configuration. */ export declare const E_INVALID_PRESET_FUNCTION: new (args: [index: number, value: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception; /** * Exception raised when a preset function throws an error during execution. * This indicates an issue with the preset implementation or configuration. */ export declare const E_PRESET_EXECUTION_ERROR: new (args: [index: number, message: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;