import type { Ref, InjectionKey, ComputedRef } from 'vue'; export interface RowContext { gutter: ComputedRef<[number, number]>; wrap: ComputedRef; supportFlexGap: Ref; } export declare const RowContextKey: InjectionKey; declare const useProvideRow: (state: RowContext) => void; declare const useInjectRow: () => RowContext; export { useInjectRow, useProvideRow }; export default useProvideRow;