import * as React from 'react';
import { type LucideProps } from 'lucide-react';
interface StatusSentProps extends LucideProps {
    status?: 'wait' | 'sent' | 'read' | 'lost' | null | undefined;
}
declare const StatusSent: React.FC<StatusSentProps>;
export { StatusSent, type StatusSentProps };
//# sourceMappingURL=status-sent.d.ts.map