import type { JSX } from 'solid-js'; import type { DisclosureStateControlledOptions, DisclosureStateRenderProps, DisclosureStateUncontrolledOptions } from '../../states/create-disclosure-state'; import type { UnmountableProps } from '../../utils/create-unmountable'; import type { HeadlessProps, ValidConstructor } from '../../utils/dynamic-prop'; import type { Prettify } from '../../utils/types'; export type CommandBarControlledBaseProps = Prettify; export type CommandBarControlledProps = HeadlessProps; export type CommandBarUncontrolledBaseProps = Prettify; export type CommandBarUncontrolledProps = HeadlessProps; export type CommandBarProps = CommandBarControlledProps | CommandBarUncontrolledProps; /** * A modal opened by a keyboard shortcut, * Cmd/Ctrl+K by default. It is a dialog, not * a palette on its own: put a `Command` inside it for the searchable part. * * Renders a `
` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/command-bar.md} */ export declare function CommandBar(props: CommandBarProps): JSX.Element; //# sourceMappingURL=CommandBar.d.ts.map