import { TextInput } from 'react-native'; import { AlertData, PromptData } from '../types/alertTypes'; export declare const useAlertContainer: () => { prompt: PromptData | AlertData | undefined; isAlert: boolean; setTextInput: import("react").Dispatch>; handlePress: (cancel?: boolean, callback?: () => void) => void; inputRef: import("react").RefObject; };