export interface PoolTypes {
    poolType: string;
    coinXType: string;
    coinYType: string;
    curveType: string;
}
export declare const parsingPoolTypes: (types: string) => PoolTypes;
export declare const standardizeStakeLPType: (types: string) => string;
export declare const enrichPrefixZero: (type_: string) => string;
export interface StakePoolTypes {
    poolType: string;
    stakeCoinType: string;
    rewardCoinType: string;
}
export declare const parsingStakePoolTypes: (types: string) => StakePoolTypes;
