import { type ReactNode, type HTMLAttributes } from 'react'; import '../styles/components/card.scss'; type Props = { /** * The card header (should include the wanted heading level) */ header?: ReactNode; /** * Does the card header need a separator? Defaults to true */ headerSeparator?: boolean; /** * Link components to be displayed at the bottom of the card */ links?: ReactNode[]; }; declare const Card: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default Card; //# sourceMappingURL=card.d.ts.map