import { core } from 'zod/mini'; interface ErrorWithCause extends Error { cause: Error; } export declare class ConfigurationError extends Error { } export declare class LoaderError extends Error { } export declare const isKnownError: (error: Error) => error is core.$ZodError | ConfigurationError | LoaderError; export declare const hasErrorCause: (error: Error) => error is ErrorWithCause; export declare const isConfigurationError: (error: Error) => error is ConfigurationError; export declare const getKnownErrors: (error: Error) => Error[]; export {};