import React, { PropsWithChildren } from 'react'; import { DialogCloseButtonProps } from './types'; interface InternalDialogCloseButtonProps extends PropsWithChildren { close: () => void; } declare const useDialogContent: (props: InternalDialogCloseButtonProps) => { renderDialogContent: () => React.JSX.Element; containerStyle: false | "" | import("react-native").ViewStyle | import("react-native").RegisteredStyle | import("react-native").RecursiveArray> | (import("react-native").StyleProp | { backgroundColor: string; })[] | null | undefined; containerProps: Omit | undefined; }; export default useDialogContent;