import { t as ScanditHTMLElement } from "../../../ScanditHTMLElement-DB_pDIgX.js";
//#region src/main/private/ui/molecules/ControlsLayout.d.ts
/**
* Layout container for view controls positioned using the Anchor enum.
* Supports 9 positions: top-left, top-center, top-right, center-left, center, center-right, bottom-left, bottom-center, bottom-right.
* Controls are positioned via slot attribute corresponding to their anchor position.
*/
declare class ControlsLayout extends ScanditHTMLElement {
static tag: "scandit-controls-layout";
constructor();
static create(): ControlsLayout;
static register(): void;
private static createStyleElement;
}
declare global {
interface HTMLElementTagNameMap {
[ControlsLayout.tag]: ControlsLayout;
}
}
//#endregion
export { ControlsLayout };