/* eslint-disable */ import type { ConditionalValue } from '../types/index.d.mts'; import type { DistributiveOmit, Pretty } from '../types/system-types.d.mts'; interface ActionBtnVariant { /** * @default "filled" */ variant: "transparent" | "filled" /** * @default "md" */ size: "sm" | "md" /** * @default "md" */ radius: "sm" | "md" } type ActionBtnVariantMap = { [key in keyof ActionBtnVariant]: Array } export type ActionBtnVariantProps = { [key in keyof ActionBtnVariant]?: ConditionalValue | undefined } export interface ActionBtnRecipe { __type: ActionBtnVariantProps (props?: ActionBtnVariantProps): string raw: (props?: ActionBtnVariantProps) => ActionBtnVariantProps variantMap: ActionBtnVariantMap variantKeys: Array splitVariantProps(props: Props): [ActionBtnVariantProps, Pretty>] getVariantProps: (props?: ActionBtnVariantProps) => ActionBtnVariantProps } /** * Action Button within Diagram Node (Bottom-Center) */ export declare const actionBtn: ActionBtnRecipe