import { ConnectedPosition } from "@angular/cdk/overlay"; import { Alignment, Placement } from "@bootkit/angular/common"; /** * Get the overlay position based on the provided placement and alignment. * * @param overlayPlacement - The placement of the overlay (e.g., 'bottom', 'top', 'start', 'end'). * @param overlayAlignment - The alignment of the overlay (e.g., 'start', 'center', 'end'). * @returns The connected position for the overlay. */ export declare function getOverlayPosition(overlayPlacement: Placement, overlayAlignment: Alignment): ConnectedPosition;