export declare const getErrorOrThrow: (err: unknown) => Error | SiError; export declare class SiError { message: string; stack: never[]; constructor(message?: string, stack?: never[]); } export declare class NotImplementedError extends SiError { } export declare const notImplemented: (message?: string) => never; //# sourceMappingURL=errors.d.ts.map