export declare class CardAction { /** The action label. If an icon is provided, it will be render as a title */ label: string; /** Use an icon for this action */ icon: string; /** Function triggered after this action is pressed */ onAction: Function; /** Set true to render this action as a single action button taking up the entire width of the action row * Use if you have only one card action */ fullBleed: false; componentWillLoad(): Promise; render(): void; }