/** @packageDocumentation * @module Item */ import { AnyItemDef } from "./AnyItemDef"; import { CustomItemDef } from "./CustomItemDef"; /** Union of all Item definitions that can be specified in a Toolbar * @public */ export declare type AnyToolbarItemDef = AnyItemDef | CustomItemDef; //# sourceMappingURL=AnyToolbarItemDef.d.ts.map