/// declare type Props = { onClick: () => void; text: string; headerText?: string; }; declare const StatusScreen: ({ onClick, text, headerText }: Props) => JSX.Element; export default StatusScreen;