import type { SVGProps } from 'react'; export interface PlayFilledIconProps extends Omit, 'width' | 'height'> { className?: string; size?: number; color?: string; } /** * Solid play triangle — the SAME glyph media-chrome/MuxPlayer renders in its * native center play button, so custom video affordances (strip cards, * facades, carousels) stay pixel-consistent with real player chrome. * Hand-maintained (not in the Figma-generated set, which has only the * outline `PlayIcon`). */ export declare function PlayFilledIcon({ className, size, color, ...props }: PlayFilledIconProps): import("react").JSX.Element; //# sourceMappingURL=play-filled-icon.d.ts.map