export declare class LabelCard { /** The main title of the card */ cardtitle: string; /** If a button included, the text for the button */ buttontitle: string; /** If a button included, the link for the button */ buttonlink: string; /** The link for the card - NOT for the button */ link: string; /** The sub text beneath the title */ text: string; /** The main title of the card */ highlightText: boolean; /** If image to be displayed on right hand side */ reverse: boolean; /** This will reduce the size of the heading in the card */ smallheading: boolean; /** Specify a fixed cardheight */ cardheight: string; /** Specify a fixed card with*/ cardwidth: string; /** Give the card a custom margin */ margin: string; /** Make the card the smallest height possible */ smallestheight: boolean; /** The image URL for the card. Defaults to the kclsu logo */ image: string; /** Add a custom shadow colour to the card */ boxshadow: string; /** the teal border on the left side of the card */ withleftborder: boolean; render(): any; }