import { TokenProfile } from '../models/TokenProfile.js';
/**
 * Fetches the latest token profiles from the DEX Screener API.
 * @returns A promise that resolves to an array of TokenProfile instances.
 */
export declare const getLatestTokenProfiles: () => Promise<TokenProfile[]>;
