export type DrawerRegionKey = "header" | "headerTitle" | "headerActions" | "headerBody" | "content" | "footer"; export type DrawerRegions = Record; export interface DrawerSlotContextValue { /** Nodos DOM de cada región. `null` hasta que la región monta. Cada slot lee solo el suyo. */ regions: DrawerRegions; } export declare const DrawerSlotContext: import('react').Context; export declare function useDrawerSlots(): DrawerSlotContextValue;