import React from 'react';
export interface PHXIconProps {
    src: string;
    alt?: string;
    size?: 'sm' | 'md' | 'lg';
    opacity?: 'full' | 'medium' | 'low';
    rounded?: boolean;
}
export declare const PHXIcon: ({ alt, opacity, rounded, size, src }: PHXIconProps) => React.JSX.Element;
