import type { IOverlayBehavior } from './IOverlayBehavior'; /** * Base configuration interface for overlay services. * All overlay services (Drawer, Dialog, Toast, etc.) extend this interface. * * @public * @typeParam TBehavior - The type of behaviors this service supports. */ export interface IOverlayServiceConfig = IOverlayBehavior> { /** * Array of behaviors to apply to this service. * Behaviors are applied in order during overlay lifecycle events. */ behaviors?: ReadonlyArray; } //# sourceMappingURL=IOverlayServiceConfig.d.ts.map