import Response from '../Contracts/ClientResponse'; import Guard from './Guard'; declare class MetaDeferGuard extends Guard { /** * * * @param {object} response * @return {boolean} */ check(response: Response): boolean; /** * * * @return {Trending | null} */ contingency(): import("../Trending").default; /** * * * @return {boolean} */ retry(): boolean; } export default MetaDeferGuard;