/**
* @param usernames - rsn of the user or users
* @returns An array containing an object for each user
*/
export declare function parser(usernames: string[]): Promise<{
    name: string;
    data: any[];
}[]>;
