export type OC_ERROR_OPTIONS = {
cause: Error;
};
declare class OCError extends Error {
constructor(message: string, options?: OC_ERROR_OPTIONS);
}
declare class LogsError extends OCError {
}
declare class ObjectsError extends OCError {
}
export { OCError, LogsError, ObjectsError, };