import { SsgoiPathTransition } from '../../types/index.ts'; import { PresetConfig } from '../utils'; import { RotateOptions, RotateVariant } from './types'; export type { RotateOptions, RotateVariant } from './types'; /** * Rotate preset configuration. * * Single-behavior preset: no `type` discriminator. The unified * `{ variant, options }` slots are exposed for v6 schema consistency. */ export type RotateConfig = PresetConfig<{ paths: readonly string[]; }, never, RotateVariant, RotateOptions>; export declare function rotate(config: RotateConfig): SsgoiPathTransition[]; //# sourceMappingURL=index.d.ts.map