import type { CoreIcon } from '@pollux-docaposte/core-design-system'; export declare class CobaltIcon { /** * Accept all icon names from `@pollux-docaposte/icon-library`. * By using the `cobalt-icon` component you don't have to install it as dependency. It is **required**. */ name: CoreIcon['name']; /** * Taking the currentcolor (inherited color of the font) by default, except if specified. */ fill?: CoreIcon['fill']; /** * Taking the size of the parent element by default, except if specified. */ size?: CoreIcon['size']; render(): any; }