/** * references * MUI v5 : https://mui.com/api/button/#props * bootstrap: https://getbootstrap.com/docs/4.0/components/alerts/ */ export declare enum ContextColor { primary = "primary", secondary = "secondary", info = "info", success = "success", warning = "warning", error = "error", black = "black", white = "white" } export declare enum ContextBorderRadius { none = "none", sm = "sm", md = "md", lg = "lg", full = "full" } export declare type ContextBorderRadiusString = "none" | "sm" | "md" | "lg" | "full"; export declare const contextBdRadius: { none: string; sm: string; md: string; lg: string; full: string; }; export declare type ContextColorString = "primary" | "secondary" | "info" | "success" | "warning" | "error" | "black" | "white"; export declare const contextBgColors: { primary: string; secondary: string; info: string; success: string; warning: string; error: string; white: string; black: string; }; export declare const contextTextColors: { primary: string; secondary: string; info: string; success: string; warning: string; error: string; white: string; black: string; };