import type { AlloyComponent } from '../../api/component/ComponentApi'; import type { AlloySpec } from '../../api/component/SpecTypes'; import type { SingleSketchFactory } from '../../api/ui/UiSketcher'; import { type TieredMenuDetail, type TieredMenuSpec } from '../types/TieredMenuTypes'; export type MenuPreparation = MenuPrepared | MenuNotBuilt; export interface MenuPrepared { type: 'prepared'; menu: AlloyComponent; } export interface MenuNotBuilt { type: 'notbuilt'; nbMenu: () => AlloySpec; } declare const make: SingleSketchFactory; declare const collapseItem: () => string; export { make, collapseItem }; //# sourceMappingURL=TieredMenuSpec.d.ts.map