export interface AdoptionRect { x: number; y: number; width: number; height: number; } export interface AdoptionPressable { overlayIdx: number | null; paintIdx: number; bounds: AdoptionRect; } export interface AdoptionOverlay { hasContent: boolean; enterIdx: number; contentBounds: AdoptionRect; } export declare function adoptsByContainment(p: AdoptionPressable, o: AdoptionOverlay): boolean; export declare const OVERLAY_ADOPTION_JS: string; //# sourceMappingURL=overlayAdoption.d.ts.map