interface Props { src: string; size: string; color?: string; padding?: string; rotated?: boolean; margin?: string; width?: string; className?: string; } /** * An svg element using the mask properties to render an icon with different colors * @param src - path to the svg mask * @param size - size of the icon (width and height) * @param color - color of the icon (default: currentcolor) * @param padding - padding of the icon (default: 0) * @param rotated - rotate the icon by 180deg (default: false) * @param margin - margin of the icon (default: 0) * @param width - overrides width of the icon (default: size) * @returns an svg element */ export declare function MaskedIcon({ src, size, color, padding, rotated, margin, width, className, }: Props): import("preact").JSX.Element; export {};