import { AppStateStatus } from 'react-native';
interface UseAppStateSettings {
    onChange?: (status: AppStateStatus) => void;
    onForeground?: () => void;
    onBackground?: () => void;
}
interface UseAppStateResult {
    appState: AppStateStatus;
}
export default function useAppState(settings?: UseAppStateSettings): UseAppStateResult;
export {};
