export declare class DbOverflowMenu { /** * The data attribute can be used to generate overflow-menu by data. */ data?: string; /** * The opposite attribute, changes the behaviour: overflow-menu -> right. */ opposite: boolean; /** * The summary attribute, shows a text for accessibility. */ summary: string; private compData; private hasItemsWrapper; get children(): Element[]; set children(value: Element[]); private _children; host: HTMLDbOverflowMenuElement; componentWillLoad(): void; render(): any; }