/** * B-Design Icon name format * Input: name: 'Member management', type: 'outlined' * Output: 'a-Membermanagement-outlined' * @param {string} name Icon name * @param {'outlined'|'filled'} type Icon style type * @return {string} Formatted icon type name. */ export declare const iconNameToTypeProps: (name: string, type: string) => string; export declare const pictogramProps: (name: string) => string; /** * Return a parsed type if the type is from B-Design icon v2.0. * Return an empty string if the legacy type cannot be parsed. * Return the input type if the type is from v3.0. * @param type * @returns The parsed type. */ export declare const parseLegacyNames: (type: string) => string;