export * from './tokens';
export * from './chain-info';
export * from './gas';
export * from './networks';
export * from './ibc';
/**
 * A TypeScript type representing the official Sei network chain identifiers.
 */
export type Network = 'pacific-1' | 'atlantic-2' | 'arctic-1';
/**
 * An object for referencing the official Sei network chain identifiers.
 */
export declare const CHAIN_IDS: {
    mainnet: string;
    testnet: string;
    devnet: string;
};
