import type { Button } from "./Button.js";
import type { IconButton } from "./IconButton.js";
import { ListItem, type ListItemOptions } from "./ListItem.js";
import type { UiComponent } from "./UiComponent.js";
export type ToolbarListItemOptions = ThisType<ToolbarListItem> & ListItemOptions;
export declare class ToolbarListItem extends ListItem {
    readonly options: ToolbarListItemOptions;
    constructor(parent: UiComponent, options?: ToolbarListItemOptions);
    toString(): string;
    addChild(child: Button | IconButton): this;
}
//# sourceMappingURL=ToolbarListItem.d.ts.map