export declare function getAccountInfoFromLcd({ address, lcdUrl, }: {
    address: string;
    lcdUrl: string;
}): Promise<{
    accountNumber: string | undefined;
    sequence: string | undefined;
    pubKey: {
        "@type": string;
        key: string;
    } | undefined;
}>;
