/* eslint-disable */ import type { ConditionalValue } from '../types/index.d.mts'; import type { DistributiveOmit, Pretty } from '../types/system-types.d.mts'; interface EdgeActionBtnVariant { } type EdgeActionBtnVariantMap = { [key in keyof EdgeActionBtnVariant]: Array } export type EdgeActionBtnVariantProps = { [key in keyof EdgeActionBtnVariant]?: ConditionalValue | undefined } export interface EdgeActionBtnRecipe { __type: EdgeActionBtnVariantProps (props?: EdgeActionBtnVariantProps): string raw: (props?: EdgeActionBtnVariantProps) => EdgeActionBtnVariantProps variantMap: EdgeActionBtnVariantMap variantKeys: Array splitVariantProps(props: Props): [EdgeActionBtnVariantProps, Pretty>] getVariantProps: (props?: EdgeActionBtnVariantProps) => EdgeActionBtnVariantProps } /** * Action Button within Diagram Edge Label */ export declare const edgeActionBtn: EdgeActionBtnRecipe