import { FC, HTMLAttributes } from 'react';
type Props = HTMLAttributes;
declare const iconMap: {
delivered: FC;
accepted: FC;
failed: FC;
read: FC;
sent: FC;
};
type StatusIconProps = Props & {
icon: keyof typeof iconMap;
};
export declare const StatusIcons: FC;
export {};