interface CommandBarContextData { ownerID: string; panelID: string; titleID: string; descriptionID: string; onOpen?: () => void; onClose?: () => void; } export declare const CommandBarContext: import("solid-js").Context; /** * Reads the nearest `CommandBar`'s internal context, which holds the generated * ids for its title, description and panel. Throws when called outside a * `CommandBar`. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/command-bar.md} */ export declare function useCommandBarContext(componentName: string): CommandBarContextData; export {}; //# sourceMappingURL=CommandBarContext.d.ts.map