import * as tailwind_variants from 'tailwind-variants';
import { VariantProps } from 'tailwind-variants';
/**
* Alert component
*
* const styles = alert({...})
*
* @example
*
* // alert content
*
*/
declare const alert: tailwind_variants.TVReturnType<{
variant: {
flat: string;
solid: string;
bordered: string;
};
color: {
default: string;
primary: string;
secondary: string;
success: string;
warning: string;
danger: string;
};
radius: {
none: string;
sm: string;
md: string;
lg: string;
full: string;
};
}, undefined, "flex relative overflow-hidden items-center w-full gap-4 px-4 py-3", {
variant: {
flat: string;
solid: string;
bordered: string;
};
color: {
default: string;
primary: string;
secondary: string;
success: string;
warning: string;
danger: string;
};
radius: {
none: string;
sm: string;
md: string;
lg: string;
full: string;
};
}, undefined, tailwind_variants.TVReturnType<{
variant: {
flat: string;
solid: string;
bordered: string;
};
color: {
default: string;
primary: string;
secondary: string;
success: string;
warning: string;
danger: string;
};
radius: {
none: string;
sm: string;
md: string;
lg: string;
full: string;
};
}, undefined, "flex relative overflow-hidden items-center w-full gap-4 px-4 py-3", unknown, unknown, undefined>>;
type AlertVariantProps = VariantProps;
export { type AlertVariantProps, alert };