import React from 'react';
/**
 * Props interface for the PlayIcon component
 */
export interface PlayIconProps {
    /** Color of the icon */
    color?: string;
    /** Size of the icon */
    size?: number;
    /** CSS class name */
    className?: string;
}
/**
 * Modern SVG play icon component for W1VideoBlock controls
 *
 * @component
 * @param {Object} props - Component props
 * @param {string} [props.color='currentColor'] - Color of the icon
 * @param {number} [props.size=20] - Size of the icon in pixels
 * @param {string} [props.className=''] - Additional CSS class name
 * @returns {JSX.Element} Rendered play icon
 */
export declare const PlayIcon: React.FC<PlayIconProps>;
export default PlayIcon;
