1 | import * as React from 'react';
|
2 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
3 | export interface CardHeaderProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
|
4 | }
|
5 | declare const CardHeader: BsPrefixRefForwardingComponent<'div', CardHeaderProps>;
|
6 | export default CardHeader;
|