interface Props { callFrom: string; onAnswerAccepted: () => void; onAnswerRejected: () => void; } declare const NewCallScreen: (props: Props) => JSX.Element; export default NewCallScreen;