import { ButtonProps } from '../../components/button/Button'; import { HTMLAttributes, ReactNode } from 'react'; export interface ConfirmButton { cancel: ButtonProps; confirm: ButtonProps; } export interface ConfirmProps extends HTMLAttributes { /** Content of the Confirm template */ children: ReactNode; /** Interface for the cancel & confirm buttons */ feButtons: ConfirmButton; } declare const Confirm: import("react").ForwardRefExoticComponent>; export default Confirm;