/// /** * The Card component is used to display information with alignments * *```tsx * import * as React from "react" * import * as System from "@harborschool/lighthouse" * * export default () => { * return ( * * * Lorem ipsum dolor sit amet, consectetur adipiscing elit. * * * Learn more * * * ) * } * ``` * @param title - string * @param label - string * @param children - React.ReactNode * @param onClick - (event: React.MouseEvent) => void * @param overrides - \{ Wrap?: StyletronReact.StyleObject } */ export declare const Card: React.FC; export { CardAction } from "./card-action"; export { CardBody } from "./card-body"; export * from "./types"; import { CardPropsT } from "./types";