import { SelectQuery } from "./Select.js";
import { When } from "./When.js";
export interface Scroll {
    name?: string;
    query?: SelectQuery[];
    target?: ScrollTarget;
    behavior?: ScrollBehavior;
    block?: ScrollLogicalPosition;
    inline?: ScrollLogicalPosition;
    when?: When;
}
export type ScrollTarget = "top" | "bottom";
