export = downloadIcons;
/**
 * @typedef { object } iconsObject
 * @property { string[] } svtIcons
 * @property { string[] } cftIcons
 */
/**
 * @method downloadIcons
 * @description Read icons.json and download icons
 * @param { function } logger
 */
declare function downloadIcons(log?: boolean, overwrite?: boolean): Promise<void>;
declare namespace downloadIcons {
    export { iconsObject };
}
type iconsObject = {
    svtIcons: string[];
    cftIcons: string[];
};
