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