import { SsgoiPathTransition } from '../../types/index.ts'; import { PresetConfig } from '../utils'; import { StripOptions, StripVariant } from './types'; export type { StripOptions, StripVariant } from './types'; /** * Strip preset configuration. * * Single-behavior preset: no `type` discriminator. The unified * `{ variant, options }` slots are exposed for consistency with other v6 * presets. */ export type StripConfig = PresetConfig<{ paths: readonly string[]; }, never, StripVariant, StripOptions>; export declare function strip(config: StripConfig): SsgoiPathTransition[]; //# sourceMappingURL=index.d.ts.map