export declare enum NotebookCreationErrorCode { PAGE_NOT_INITIALIZED = "PAGE_NOT_INITIALIZED", CLICK_NEW_NOTEBOOK_FAILED = "CLICK_NEW_NOTEBOOK_FAILED" } export interface NotebookCreationErrorOptions { code: NotebookCreationErrorCode; selector?: string; url?: string; cause?: unknown; } export declare class NotebookCreationError extends Error { readonly code: NotebookCreationErrorCode; readonly selector?: string; readonly url?: string; readonly cause?: unknown; constructor(message: string, options: NotebookCreationErrorOptions); }