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; export { StatusCall, type StatusCallProps }; //# sourceMappingURL=status-call.d.ts.map