export type FetchProfileExtraResponse = {
    totalPhotos: number;
    photos: string[];
    groupIds: string[];
    photoMetas: string[];
    bkPhotos: string[];
};
export declare const getProfileExtraFactory: (ctx: import("../../context.js").ContextBase, api: import("../../apis.js").API) => (fid: string) => Promise<FetchProfileExtraResponse>;
