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 DialogContentSlots { [key: string]: React.ComponentType; Root: React.ComponentType; } export interface DialogContentProps extends SlotPropsConfig { children?: React.ReactNode; /** If true, renders a top and bottom Divider around the content area. */ dividers?: boolean; size?: SizeProp; color?: ColorProp; sx?: SxProps; style?: StyleProp; testID?: string; } declare const DialogContent: React.NamedExoticComponent; export { DialogContent }; //# sourceMappingURL=DialogContent.d.ts.map