import * as React from 'react'; import { StyleProp, View, ViewStyle } from 'react-native'; import type { ThemeProp } from 'src/types'; export declare type Props = React.ComponentPropsWithRef & { /** * Content of the `DialogActions`. */ children: React.ReactNode; style?: StyleProp; /** * @optional */ theme?: ThemeProp; }; /** * A component to show a list of actions in a Dialog. * * ## Usage * ```js * import * as React from 'react'; * import { Button, Dialog, Portal } from 'react-native-paper'; * * const MyComponent = () => { * const [visible, setVisible] = React.useState(false); * * const hideDialog = () => setVisible(false); * * return ( * * * * * * * * * ); * }; * * export default MyComponent; * ``` */ declare const DialogActions: { (props: Props): React.JSX.Element; displayName: string; }; export default DialogActions; //# sourceMappingURL=DialogActions.d.ts.map