import { PropsWithChildren } from 'react';

type UICommandItemProps = {
    entity: {
        /** Arguments of command */
        args?: string;
        /** Description of command */
        description?: string;
        /** Name of the command */
        name?: string;
    };
};
declare const UICommandItem: (props: PropsWithChildren<UICommandItemProps>) => JSX.Element;

export { UICommandItem, UICommandItemProps };
//# sourceMappingURL=UICommandItem.d.ts.map
