export declare class NoElementWithSelectorError extends Error { type: "no-elements-with-selector"; failedPath?: string[]; fullPath?: string[]; private static convertSelectorPathToString; constructor(params: { selector: string; failedPath?: string[]; fullPath?: string[]; }); } export declare class MultipleElementsWithSelectorError extends Error { type: "multiple-elements-with-selector"; constructor(count: number, selector: string); } export declare const isNoElementWithSelectorError: (error: unknown) => error is NoElementWithSelectorError; export declare const isMultipleElementsWithSelectorError: (error: unknown) => error is MultipleElementsWithSelectorError; //# sourceMappingURL=errors.d.ts.map