import { SsgoiPathTransition } from '../../types/index.ts'; export type ScrollConfig = { paths: readonly string[]; /** * - `"directional"` (default): path order decides direction. Earlier → later * scrolls up; later → earlier scrolls down. * - `"non-directional"`: every transition scrolls upward (pages slide up, new * page enters from the bottom). Direction is fixed — not user-configurable. */ type?: "directional" | "non-directional"; variant?: "default"; options?: object; }; export declare function scroll(config: ScrollConfig): SsgoiPathTransition[]; //# sourceMappingURL=index.d.ts.map