import type { ComputedRef, InjectionKey } from 'vue'; interface RowContext { gutter: ComputedRef<number>; } export declare const rowContextKey: InjectionKey<RowContext>; export {};