import { LexicalCommand } from 'lexical'; import { type JSX } from 'react'; type CommandPayload = { id: string; name: string; }; export declare const INSERT_PAGES_KIT_COMPONENT_COMMAND: LexicalCommand; export declare function PagesKitComponentPlugin(): JSX.Element | null; export declare function usePagesKitComponents(): { pagesKitComponents: { id: string; name: string; properties?: { [key: string]: any; } | undefined; }[]; }; export {};