import type { Editor } from 'grapesjs';
import { CommandItem, CustomItems } from '../../types';
export declare const getCommandItems: <T extends CommandItem<import("grapesjs").ObjectAny> = CommandItem<import("grapesjs").ObjectAny>>({ items, editor, customItems }: {
    editor: Editor;
    items: T[];
    customItems?: CustomItems<T> | undefined;
}) => T[];
