/** * Stagger helpers. * * @module bquery/motion */ import type { StaggerFunction, StaggerOptions } from './types'; /** * Create a staggered delay function for list animations. * * @param step - Delay between items in milliseconds * @param options - Stagger configuration * @returns Function that returns delay for a given index * * @example * ```ts * const delay = stagger(50, { from: 'center' }); * delay(0, 3); // 50 * delay(1, 3); // 0 * ``` */ export declare const stagger: (step: number, options?: StaggerOptions) => StaggerFunction; //# sourceMappingURL=stagger.d.ts.map