import type { JSX } from 'solid-js'; import type { AutocompleteOptionStateOptions, AutocompleteOptionStateRenderProps } from '../../states/create-autocomplete-option-state'; import type { HeadlessPropsWithRef, ValidConstructor } from '../../utils/dynamic-prop'; import type { OmitAndMerge, Prettify } from '../../utils/types'; import type { ButtonProps } from '../button'; export type CommandOptionBaseProps = Prettify & AutocompleteOptionStateRenderProps>; export type CommandOptionProps = HeadlessPropsWithRef, ButtonProps>>; /** * One result in a `Command`. Carries `tc-matches` while it matches the current * query. * * Renders an `
  • ` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/command.md} */ export declare function CommandOption(props: CommandOptionProps): JSX.Element; //# sourceMappingURL=CommandOption.d.ts.map