import type { FC } from 'react';
export interface UserIconProps {
    /**
     * Width and height in pixels.
     * @default 24
     */
    size?: number;
    /**
     * Optional class names applied to the root SVG element.
     */
    className?: string;
}
/**
 * Decorative user avatar icon. Background and foreground colors follow the
 * active white-label theme via Tailwind `fill-primary-*` utilities, so the
 * icon adapts automatically to the institution palette (e.g. blue for ENEM
 * Paraná, red for ENEM Paraíba).
 */
export declare const UserIcon: FC<UserIconProps>;
//# sourceMappingURL=UserIcon.d.ts.map