/** * Styles for MiddleTruncatePath. * * @module @mks2508/mks-ui/react/ui/MiddleTruncatePath */ import type { StyleSlots } from '../../../core/types'; /** Visual regions of the MiddleTruncatePath component. */ export type MiddleTruncatePathSlot = 'root' | 'start' | 'end'; /** * Default Tailwind classes for each MiddleTruncatePath slot. * * | Slot | Region | * |------|--------| * | `root` | Container `` wrapping start + end segments | * | `start` | Truncatable start segments (ellipsised when narrow) | * | `end` | Fixed trailing segments (always visible) | */ export declare const MiddleTruncatePathStyles: StyleSlots; /** CVA variants for the MiddleTruncatePath root. */ export declare const middleTruncatePathVariants: (props?: ({} & import("class-variance-authority/types").ClassProp) | undefined) => string; /** Tailwind classes used when the path is short enough to skip splitting. */ export declare const MiddleTruncatePathShortRootStyles: "truncate"; //# sourceMappingURL=MiddleTruncatePath.styles.d.ts.map