import React from 'react'; import type { StyleProp, TextStyle } from 'react-native'; import type { SizeProp } from '../../tokens/size'; import type { ColorProp, SxProps, SlotPropsConfig } from '../../types/shared'; export interface DialogTitleSlots { [key: string]: React.ComponentType; Root: React.ComponentType; } export interface DialogTitleProps extends SlotPropsConfig { children?: React.ReactNode; size?: SizeProp; color?: ColorProp; sx?: SxProps; style?: StyleProp; testID?: string; } declare const DialogTitle: React.NamedExoticComponent; export { DialogTitle }; //# sourceMappingURL=DialogTitle.d.ts.map