import { ComponentChildren } from './children'; export interface ActionProps { /** * The text to use as the Action modal’s title. If not provided, the name of the extension will be used. */ heading?: string; } export interface ActionSlots { /** * The primary action to perform, provided as a button or link type element. */ primaryAction?: ComponentChildren; /** * The secondary actions to perform, provided as button or link type elements. */ secondaryActions?: ComponentChildren; }