import { Entity } from '../../entity'; import { CurveUnpopulated } from '../../curve'; import { MigrationDex, TokenType, VanityExtension } from '../../../constants'; import { TokenPairState } from '../constants'; export declare class TokenPairUnpopulated extends Entity { id: string; curve: CurveUnpopulated; mintAddress: string; symbol: string; name: string; decimals: number; description?: string; uri: string; creatorPK: string; type: TokenType; blockchain: string; state: TokenPairState; migrated: boolean; disabled: boolean; migrationDex: MigrationDex; isAirlock?: boolean; icon?: string; banner?: string; website?: string; x?: string; telegram?: string; discord?: string; createdAt: Date; moderated?: boolean; complianceLO?: boolean; vanityExtension?: VanityExtension; isCTO?: boolean; }