import { BaseError } from "@webiny/feature/api"; type FieldNotSearchableErrorData = { fieldId: string; }; export declare class FieldNotSearchableError extends BaseError { readonly code: "Cms/Entry/FieldNotSearchable"; constructor(fieldId: string); } type InvalidWhereConditionErrorData = { where: Record; }; export declare class InvalidWhereConditionError extends BaseError { readonly code: "Cms/Entry/InvalidWhereCondition"; constructor(message: string, where: Record); } export {};