import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { SizeProp } from '../../tokens/size'; import type { ColorProp, SxProps, SlotPropsConfig } from '../../types/shared'; export interface DialogActionsSlots { [key: string]: React.ComponentType; Root: React.ComponentType; } export interface DialogActionsProps extends SlotPropsConfig { children?: React.ReactNode; /** If true, removes the default gap between action buttons. */ disableSpacing?: boolean; size?: SizeProp; color?: ColorProp; sx?: SxProps; style?: StyleProp; testID?: string; } declare const DialogActions: React.NamedExoticComponent; export { DialogActions }; //# sourceMappingURL=DialogActions.d.ts.map