import { SsgoiPathTransition } from '../../types/index.ts'; /** * Public `type` values for `blind`. Maps to the internal `direction` axis: * - `"horizontal"` (default) — blinds open along the horizontal axis. * - `"vertical"` — blinds open along the vertical axis. */ export type BlindType = "horizontal" | "vertical"; export type BlindConfig = { paths: readonly string[]; type?: BlindType; variant?: "default"; options?: object; }; export declare function blind(config: BlindConfig): SsgoiPathTransition[]; //# sourceMappingURL=index.d.ts.map