export interface DogePriceType {
    initPriceFee: () => void;
    price: number;
    fee: DogeFeeType;
    getFee: () => void;
    getPrice: (c?: string) => void;
    getInfoPrice: () => void;
}
export interface DogeFeeType {
    low: string | number;
    hight: string | number;
    medium: string | number;
}
export declare function useDogePrice(): DogePriceType;
