/** * Base ObjectLoader error */ export declare abstract class BaseError extends Error { /** * Default message if none is passed */ static defaultMessage: string; constructor(message?: string, options?: ErrorOptions); } /** * Throw these in execution branches that should never occur unless if there's a bug */ export declare class LogicError extends BaseError { static defaultMessage: string; } export declare class UninitializedResourceAccessError extends BaseError { static defaultMessage: string; } export declare class ComposableInvokedOutOfScopeError extends BaseError { static defaultMessage: string; } /** * Throw this when something that's only supported during CSR is invoked during SSR or vice versa */ export declare class UnsupportedEnvironmentError extends BaseError { static defaultMessage: string; }