/* eslint-disable */ import type { ConditionalValue } from '../types/index.d.mts'; import type { DistributiveOmit, Pretty } from '../types/system-types.d.mts'; interface EdgePathVariant { } type EdgePathVariantMap = { [key in keyof EdgePathVariant]: Array } type EdgePathSlot = "path" | "pathBg" | "markersCtx" | "middlePoint" export type EdgePathVariantProps = { [key in keyof EdgePathVariant]?: ConditionalValue | undefined } export interface EdgePathRecipe { __slot: EdgePathSlot __type: EdgePathVariantProps (props?: EdgePathVariantProps): Pretty> raw: (props?: EdgePathVariantProps) => EdgePathVariantProps variantMap: EdgePathVariantMap variantKeys: Array splitVariantProps(props: Props): [EdgePathVariantProps, Pretty>] getVariantProps: (props?: EdgePathVariantProps) => EdgePathVariantProps } /** * Recipe for Edge Path */ export declare const edgePath: EdgePathRecipe