UNPKG

reablocks

Version:
14 lines (13 loc) 581 B
import { default as React, HTMLAttributes, ReactNode } from 'react'; export interface ConfirmDialogActionsProps extends Omit<HTMLAttributes<HTMLElement>, 'children'> { /** * The action buttons. Read managed state (isLoading, onConfirm, etc.) * inside any child via `useConfirmDialogContext()`. */ children?: ReactNode; /** * Additional CSS class name for the footer container. */ className?: string; } export declare const ConfirmDialogActions: React.ForwardRefExoticComponent<ConfirmDialogActionsProps & React.RefAttributes<HTMLElement>>;