/** * An error that is thrown when compiling a query. * This indicates that you've performed an invalid chain. */ export declare class InvalidQueryError extends Error { key: string; private details?; constructor(key: string, message: string, details?: any | undefined); }