export interface DexscreenerResponse {
    schemaVersion: string;
    pairs?: Array<{
        chainId: string;
        dexId: string;
        url: string;
        pairAddress: string;
        labels: string[];
        baseToken: {
            address: string;
            name: string;
            symbol: string;
        };
        quoteToken: {
            address: string;
            name: string;
            symbol: string;
        };
        txns: {
            h24: {
                buys: number;
                sells: number;
            };
        };
        volume: {
            h24: number;
        };
        priceChange: {
            h24: number;
        };
        priceNative: string;
        priceUsd: string;
        liquidity: {
            usd: number;
            base: number;
            quote: number;
        };
        fdv: number;
        marketCap: number;
        info?: {
            imageUrl?: string;
            websites?: Array<{
                label: string;
                url: string;
            }>;
            socials?: Array<{
                type: string;
                url: string;
            }>;
        };
        boosts: any;
    }>;
}
//# sourceMappingURL=types.d.cts.map