/** * Marker keys and type tags shared between `Root`, `Trigger`, `Menu`, and * `MenuItem*`. `Root` walks its children looking for these tags so the * composition API doesn't rely on string component names or display names. */ export declare const CONTEXT_MENU_KIND = "__ExpoBlueskyPeekMenuKind__"; export type ContextMenuKind = 'trigger' | 'menu' | 'item' | 'item-icon' | 'item-text'; export type TaggedComponent
= React.FunctionComponent
& { [CONTEXT_MENU_KIND]: ContextMenuKind; }; export declare function tag
(component: React.FunctionComponent
, kind: ContextMenuKind): TaggedComponent
; export declare function kindOf(type: unknown): ContextMenuKind | undefined; //# sourceMappingURL=registry.d.ts.map