import { ProfileCurrencyEnum } from '@escapenavigator/types/dist/profile/enum/profile-currency'; import { ApiMethodDeclaration } from '../..'; type ParamsData = { code: string; }; export type CheckNavigatorCertificateByCodeRO = { found: boolean; amount: number | null; currency: ProfileCurrencyEnum | null; reason?: 'not_found' | 'invalid' | 'invalid_format' | 'pending_redeem'; expireDate?: string | null; image?: string | null; backgroundImage?: string | null; }; type ResponseData = CheckNavigatorCertificateByCodeRO; export declare const checkNavigatorCertificateByCode: ApiMethodDeclaration; export {};