import { CSSProperties, InjectionKey } from 'vue'; export { default as UiGrid } from './src/grid.vue'; export { default as UiGridItem } from './src/grid.item.vue'; export interface GridMode { cols: number | string; xGap: number | string; yGap: number | string; style: CSSProperties | string; itemStyle: CSSProperties | string; } export interface GridItemMode { span: number | string; offset: number | string; xGap: number | string; yGap: number | string; } export declare const gridInjectionKey: InjectionKey;