ivt
Version:
Ivt Components Library
21 lines (18 loc) • 1.67 kB
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { Dialog } from '../dialog/index.js';
import { Command as Command$1 } from 'cmdk';
import React__default from 'react';
import '@radix-ui/react-dialog';
declare function Command({ className, ...props }: React__default.ComponentProps<typeof Command$1>): react_jsx_runtime.JSX.Element;
declare function CommandDialog({ title, description, children, ...props }: React__default.ComponentProps<typeof Dialog> & {
title?: string;
description?: string;
}): react_jsx_runtime.JSX.Element;
declare function CommandInput({ className, ...props }: React__default.ComponentProps<typeof Command$1.Input>): react_jsx_runtime.JSX.Element;
declare function CommandList({ className, ...props }: React__default.ComponentProps<typeof Command$1.List>): react_jsx_runtime.JSX.Element;
declare function CommandEmpty({ ...props }: React__default.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime.JSX.Element;
declare function CommandGroup({ className, ...props }: React__default.ComponentProps<typeof Command$1.Group>): react_jsx_runtime.JSX.Element;
declare function CommandSeparator({ className, ...props }: React__default.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime.JSX.Element;
declare function CommandItem({ className, ...props }: React__default.ComponentProps<typeof Command$1.Item>): react_jsx_runtime.JSX.Element;
declare function CommandShortcut({ className, ...props }: React__default.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
export { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut };