import type { Generic } from 'adopted-style-sheets';
export declare const alertVariantOptions: readonly ["card", "msg"];
export type AlertVariantPropType = (typeof alertVariantOptions)[number];
export type PropAlertVariant = {
    variant: AlertVariantPropType;
};
export declare const validateAlertVariant: (component: Generic.Element.Component, value?: AlertVariantPropType) => void;
