import type { SVGProps } from "react"; export interface VolumeOffFilledIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } /** * Solid muted-volume glyph (speaker + slash) — the filled companion to * `PlayFilledIcon`, matching media-chrome's icon family so video unmute * affordances read identically to real player chrome. Hand-maintained (the * Figma-generated set has only outline volume icons). */ export declare function VolumeOffFilledIcon({ className, size, color, ...props }: VolumeOffFilledIconProps): import("react").JSX.Element; //# sourceMappingURL=volume-off-filled-icon.d.ts.map