export declare const alertContainerVariants: (props?: ({ isClosing?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const alertVariants: (props?: ({ variant?: "error" | "success" | "info" | "warning" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const alertIconVariants: (props?: ({ variant?: "error" | "success" | "info" | "warning" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const alertHeaderVariants: (props?: ({ variant?: "error" | "success" | "info" | "warning" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const alertActionVariants: (props?: ({ variant?: "error" | "success" | "info" | "warning" | null | undefined; isPrimary?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type AlertVariant = 'success' | 'error' | 'info' | 'warning'; export type ActionProps = { label: string; onClick: () => void; }; export type AlertProps = { title: string; description: string; variant?: AlertVariant; primaryActionProps?: ActionProps; secondaryActionProps?: ActionProps; isCloseButtonVisible?: boolean; className?: string; onClose?: () => void; }; //# sourceMappingURL=types.d.ts.map