/**
 *  @slot cardtop - Allows for content at the top of the card including figures, images and headers.
 *  @slot menu - Allows a menu to be added.
 *  @slot none - This is the main content of the card
 *  @slot footer - Allows a footer to be added to the card.
 */
export declare class Card {
  /**
   * Card link - attached to card title and media slot
   */
  href: string;
  /**
   * Style Class - adds class to the card for styling and rounded corners
   */
  styleclass: string;
  /**
   * Status border - if the card has a status border you can set the colour here e.g. "#000";
   */
  statusborder: string;
  render(): any;
}
