import { ProfileState } from './reducer'; import { Profile } from './types'; export declare const getState: (state: any) => ProfileState; export declare const getData: (state: any) => ProfileState['data']; export declare const getError: (state: any) => ProfileState['error']; export declare const getLoading: (state: any) => import("../loading").LoadingState; export declare const getProfileOfAddress: (state: any, address: string) => Profile | undefined; export declare const getProfileOfAddresses: (state: any, addresses: string[]) => Profile[]; export declare const isLoadingSetProfileAvatarDescription: (state: any) => boolean; export declare const isLoadingSetProfileAvatarAlias: (state: any) => boolean; export declare const getProfileError: (state: any) => string | null; export declare const getProfilesBeingLoaded: (state: any) => string[]; export declare const isLoadingProfile: (state: any, address: string) => boolean; export declare const isLoadingSomeProfiles: (state: any, addresses: string[]) => boolean; export declare const isLoadingAllProfiles: (state: any, addresses: string[]) => boolean;