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 CardMediaSlots { [key: string]: React.ComponentType; Root: React.ComponentType; } export interface CardMediaProps extends SlotPropsConfig { /** Image URI string. */ image?: string; /** Accessibility label for the image. */ alt?: string; /** Height in dp. Defaults to 194. */ height?: number; /** Custom component to render instead of Image. */ component?: React.ComponentType; size?: SizeProp; color?: ColorProp; sx?: SxProps; style?: StyleProp; testID?: string; } declare const CardMedia: React.NamedExoticComponent; export { CardMedia }; //# sourceMappingURL=CardMedia.d.ts.map