import { SsgoiPathTransition } from '../../types/index.ts'; import { PresetConfig } from '../utils'; import { JaeminVariant } from './types'; export type { JaeminVariant } from './types'; /** * Jaemin preset configuration. * * Single-behavior preset: no `type` discriminator and no public `options` * (internal tuning constants are intentionally not exposed). The unified * `variant` slot is kept for v6 schema consistency. */ export type JaeminConfig = PresetConfig<{ paths: readonly string[]; }, never, JaeminVariant>; export declare function jaemin(config: JaeminConfig): SsgoiPathTransition[]; //# sourceMappingURL=index.d.ts.map