import { OnClick } from "./onClick"; /** * A card action is the action associated with the card. For an invoice card, * a typical action would be: delete invoice, email invoice or open the * invoice in browser. */ export declare class CardAction { /** * The label used to be displayed in the action menu item. */ private actionLabel?; /** * The onclick action for this action item. */ private onClick?; getActionLabel(): string; setActionLabel(value: string): CardAction; getOnClick(): OnClick; setOnClick(value: OnClick): CardAction; }