/* eslint-disable */ import type { ConditionalValue } from '../types/index.d.mts'; import type { DistributiveOmit, Pretty } from '../types/system-types.d.mts'; interface NodeNotesVariant { /** * @default false */ opened: boolean } type NodeNotesVariantMap = { [key in keyof NodeNotesVariant]: Array } export type NodeNotesVariantProps = { [key in keyof NodeNotesVariant]?: ConditionalValue | undefined } export interface NodeNotesRecipe { __type: NodeNotesVariantProps (props?: NodeNotesVariantProps): string raw: (props?: NodeNotesVariantProps) => NodeNotesVariantProps variantMap: NodeNotesVariantMap variantKeys: Array splitVariantProps(props: Props): [NodeNotesVariantProps, Pretty>] getVariantProps: (props?: NodeNotesVariantProps) => NodeNotesVariantProps } export declare const nodeNotes: NodeNotesRecipe