import React from 'react';
import { ImageProps } from '@/ui/components/image';
export type AlriIconProps = Omit<ImageProps, 'src' | 'alt' | 'loading'> & {
    alt: string;
};
export declare const AlriIcon: React.FC<AlriIconProps>;
