/**
 * @license
 * Copyright 2025 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */
/**
 * Representation of a section separator in a menu.
 */
export declare class MenuSeparator {
    /**
     * DOM element representing this separator in a menu.
     */
    private element;
    /**
     * Creates the DOM representation of this separator.
     *
     * @returns An <hr> element.
     */
    createDom(): HTMLHRElement;
    /**
     * Disposes of this separator.
     */
    dispose(): void;
}
//# sourceMappingURL=menu_separator.d.ts.map