import { ReactNode } from 'react'; export type DrawerPortalSlotKind = "header" | "content" | "footer"; /** Marca compounds que portalean a regiones del DrawerPanel (p. ej. Modal.Header). */ export declare function markDrawerPortalSlot(component: T, kind: DrawerPortalSlotKind): T; /** Si la región content debe tener padding vertical (py-6) y contarse en auto-height. */ export declare function resolveHasContentRegion(usesFlatSlots: boolean, flatContent: ReactNode, panelChildren: ReactNode): boolean;