import { NetworkClientParam } from '@stacks/network';
export interface ProfileLookupOptions {
    username: string;
    zoneFileLookupURL?: string;
}
export declare function lookupProfile(options: ProfileLookupOptions & NetworkClientParam): Promise<Record<string, any>>;
export declare function getNameInfo(opts: {
    name: string;
} & NetworkClientParam): Promise<any>;
