import type { PropsWithChildren } from 'react';
import React from 'react';
import type { CommandResponse } from 'stream-chat';
export type CommandItemProps = {
    entity: CommandResponse;
};
export declare const CommandItem: (props: PropsWithChildren<CommandItemProps>) => React.JSX.Element;
