import React from 'react'; import { AppTile } from '../hooks'; import { StackScreenProps } from '@react-navigation/stack'; export type AuthedAppTileParams = { appTile: AppTile; searchParams?: { [key: string]: string; }; refreshTodayCountOnRemove?: boolean; tabMode?: boolean; }; type AuthedAppTileScreenProps = StackScreenProps, string>; export declare const AuthedAppTileScreen: ({ navigation, route, }: AuthedAppTileScreenProps) => React.JSX.Element; export {};