import React from 'react'; import { ButtonProps } from '../button'; export declare type AlertButtonProps = Omit & { buttonType?: 'primary' | 'default'; className?: string; }; export declare const AlertButton: React.ForwardRefExoticComponent & { buttonType?: 'primary' | 'default'; className?: string; } & React.RefAttributes>;