/** * A util function to read svg emoji directory and its content * and constructs an logo story for all of it's subdirectories * * @param fs any * @returns an auto generated logo story file * @author Taimoor Khan * @remarks React Native Logo Collection */ /** End file docs */ export interface ILogoMap { [key: string]: { [key: string]: unknown; }; } export declare const generateReactNativeLogos: (fs: any) => void;