import { TGenerateThemeForCardProps } from '../../../design/designFunctions/generateThemeForCard'; import { CSSProp } from 'styled-components'; export type THeader = TGenerateThemeForCardProps & { children?: React.ReactNode; externalStyle?: CSSProp; }; export type THeaderWithHTMLAttributes = THeader & React.HTMLAttributes;