import type { FC, HTMLAttributes, Ref } from 'react'; export type AlertControlsProps = Omit, 'className'> & { ref?: Ref; }; /** * Controls container for Alert * * Use this to place action buttons. * Buttons should use variant="secondary" with color="neutral" or "destructive" and size="small". */ export declare const AlertControls: FC;