import { SsgoiPathTransition } from '../../types/index.ts'; import { PresetConfig } from '../utils'; import { FadeOptions, FadeType, FadeVariant } from './types'; export type { FadeOptions, FadeType, FadeVariant } from './types'; /** * Fade preset configuration. Default `type` is `"fade-through"` — * sequential fade-out → fade-in. */ export type FadeConfig = PresetConfig<{ paths: readonly string[]; }, FadeType, FadeVariant, FadeOptions>; export declare function fade(config: FadeConfig): SsgoiPathTransition[]; //# sourceMappingURL=index.d.ts.map