import type { ComputedRef, InjectionKey } from "vue"; import type { XyListItemLayout, XyListResolvedSize } from "./types"; export interface XyListContext { grid: ComputedRef; itemLayout: ComputedRef; size: ComputedRef; split: ComputedRef; } export declare const xyListContextKey: InjectionKey;