import * as React from 'react'; import { Animated, StyleProp, ViewStyle } from 'react-native'; import type { ThemeProp } from '../../types'; export type Props = { /** * Determines whether clicking outside the dialog dismiss it. */ dismissable?: boolean; /** * Determines whether clicking Android hardware back button dismiss dialog. */ dismissableBackButton?: boolean; /** * Callback that is called when the user dismisses the dialog. */ onDismiss?: () => void; /** * Determines Whether the dialog is visible. */ visible: boolean; /** * Content of the `Dialog`. */ children: React.ReactNode; style?: Animated.WithAnimatedValue>; /** * @optional */ theme?: ThemeProp; /** * testID to be used on tests. */ testID?: string; }; /** * Dialogs inform users about a specific task and may contain critical information, require decisions, or involve multiple tasks. * To render the `Dialog` above other components, you'll need to wrap it with the [`Portal`](../../Portal) component. * * ## Usage * ```js * import * as React from 'react'; * import { View } from 'react-native'; * import { Button, Dialog, Portal, PaperProvider, Text } from 'react-native-paper'; * * const MyComponent = () => { * const [visible, setVisible] = React.useState(false); * * const showDialog = () => setVisible(true); * * const hideDialog = () => setVisible(false); * * return ( * * * * * * Alert * * This is simple dialog * * * * * * * * * ); * }; * * export default MyComponent; * ``` */ declare const Dialog: { ({ children, dismissable, dismissableBackButton, onDismiss, visible, style, theme: themeOverrides, testID, }: Props): React.JSX.Element; Content: { (props: import("./DialogContent").Props): React.JSX.Element; displayName: string; }; Actions: { (props: import("./DialogActions").Props): React.JSX.Element; displayName: string; }; Title: { ({ children, theme: themeOverrides, style, ...rest }: import("./DialogTitle").Props): React.JSX.Element; displayName: string; }; ScrollArea: { (props: import("./DialogScrollArea").Props): React.JSX.Element; displayName: string; }; Icon: { ({ size, color, icon, theme: themeOverrides, }: import("./DialogIcon").Props): React.JSX.Element | null; displayName: string; }; }; export default Dialog; //# sourceMappingURL=Dialog.d.ts.map