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