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 CardHeaderSlots { [key: string]: React.ComponentType; Root: React.ComponentType; } export interface CardHeaderProps extends SlotPropsConfig { /** Avatar element rendered at the start. */ avatar?: React.ReactNode; /** Primary title text or element. */ title?: React.ReactNode; /** Secondary subheader text or element. */ subheader?: React.ReactNode; /** Action element rendered at the end (e.g. icon button). */ action?: React.ReactNode; size?: SizeProp; color?: ColorProp; sx?: SxProps; style?: StyleProp; testID?: string; } declare const CardHeader: React.NamedExoticComponent; export { CardHeader }; //# sourceMappingURL=CardHeader.d.ts.map