import React from "react";
import type { CommandItem } from "./type";
type Props = {
    item: CommandItem;
    onClick: (e: any) => void;
};
declare const Command: (props: Props) => React.JSX.Element;
export default Command;
