import React from 'react'; import { type ButtonProps } from '../Button'; import './AlertAction.types'; export interface AlertActionProps extends Omit { variant?: 'outlined' | 'contained' | 'unstableTonal'; } declare const slots: { root: { slot: "root"; name: "MuiAlertAction"; }; }; export type AlertActionSlots = keyof typeof slots; declare const AlertAction: React.FC; export default AlertAction;