import React from 'react'; interface FocusScreenProps { style?: any; children: any; fixedItems?: any; removeSpaceOnTop?: boolean; loading?: boolean; fetcher: () => void; displayCondition?: boolean; } declare const FocusScreen: ({ style, children, fixedItems, removeSpaceOnTop, loading, fetcher, displayCondition, }: FocusScreenProps) => React.JSX.Element; export default FocusScreen;