import { Profile } from "./profile";
import { provider } from "web3-core";
import Web3 from "web3";
export interface PowerUPOptions {
    provider: provider;
    ipfsGateway?: string;
}
export declare class PowerUP {
    web3: Web3;
    provider: provider;
    ipfsGateway: string;
    constructor(opts: PowerUPOptions);
    getProfile(address: string): Promise<Profile>;
}
