declare type ButtonType = 'GENERIC' | 'RESET' | 'SAVE'; export declare class ActionsModel { /** * The link or model to open */ Action?: string; /** * The type of action Link, model */ ActionType?: string; /** * Callback function on button click */ ClickEvent: any; /** * Angular Material theme color (primary, accent, warn) */ Color?: string; /** * The Icon to display */ Icon?: string; /** * Button text value */ Label: string; /** * Style from parent component */ Style?: string; /** * Type of button functionality (reset, save, generic) */ Type: ButtonType; } export {};