/* eslint-disable */ import type { ConditionalValue } from '../types/index.d.mts'; import type { DistributiveOmit, Pretty } from '../types/system-types.d.mts'; interface ActionButtonsVariant { } type ActionButtonsVariantMap = { [key in keyof ActionButtonsVariant]: Array } export type ActionButtonsVariantProps = { [key in keyof ActionButtonsVariant]?: ConditionalValue | undefined } export interface ActionButtonsRecipe { __type: ActionButtonsVariantProps (props?: ActionButtonsVariantProps): string raw: (props?: ActionButtonsVariantProps) => ActionButtonsVariantProps variantMap: ActionButtonsVariantMap variantKeys: Array splitVariantProps(props: Props): [ActionButtonsVariantProps, Pretty>] getVariantProps: (props?: ActionButtonsVariantProps) => ActionButtonsVariantProps } /** * Action Buttons Container within Diagram Node (Bottom-Center) */ export declare const actionButtons: ActionButtonsRecipe