/** * Style slots for the AlertDialog component. * * Defines the visual regions (slots) available for style overrides. * AlertDialog does not use CVA variants since its visual appearance * is primarily controlled by the `from` flip direction prop. * * @module @mks2508/mks-ui/react/ui/AlertDialog/AlertDialog.styles */ import type { StyleSlots } from '../../../core/types'; import type { AlertDialogSlot } from './AlertDialog.types'; /** * Default Tailwind classes for each visual region of the AlertDialog. * * These classes are applied as base styles and can be overridden * via the `slots` prop on individual sub-components. * * @example * ```typescript * import { AlertDialogStyles } from '@mks2508/mks-ui'; * * // Access individual slot defaults * console.log(AlertDialogStyles.backdrop); // backdrop base classes * console.log(AlertDialogStyles.popup); // popup container classes * ``` */ export declare const AlertDialogStyles: StyleSlots; //# sourceMappingURL=AlertDialog.styles.d.ts.map