import { ValueOf } from '../internal/types';
export declare const InlineAlertType: {
    readonly Primary: "primary";
    readonly Success: "success";
    readonly Warning: "warning";
    readonly Danger: "danger";
    readonly Error: "error";
    readonly Info: "info";
};
export type InlineAlertType = ValueOf<typeof InlineAlertType>;
