import * as React from 'react';
import { type LucideProps } from 'lucide-react';
interface StatusCallProps extends LucideProps {
    fromMe?: boolean;
    status?: 'reject' | 'notAnswer' | 'hungUp' | 'cancel' | undefined;
}
declare const StatusCall: React.FC<StatusCallProps>;
export { StatusCall, type StatusCallProps };
//# sourceMappingURL=status-call.d.ts.map