import React from 'react'; import { CSS } from "../config"; import { StyledCardHeaderVariants } from "./card-styled"; interface Props extends StyledCardHeaderVariants { css?: CSS; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type CardHeaderProps = Props & NativeAttrs; declare const CardHeader: React.FC>; export default CardHeader;