import { BaseOutProperties, InProperties, RenderContext, Svg, SvgOutProperties, WithSignal } from '@pmndrs/uikit'; export type MaterialSymbolsIconOutProperties = SvgOutProperties & { icon?: string; iconWeight?: number; iconStyle?: string; }; export type MaterialSymbolsIconProperties = InProperties; export declare class MaterialSymbolsIcon extends Svg { name: string; constructor(properties?: MaterialSymbolsIconProperties, initialClasses?: Array | string>, config?: { renderContext?: RenderContext; defaultOverrides?: MaterialSymbolsIconProperties; defaults?: WithSignal; }); }