import type { ExtractPropTypes } from 'vue'; export type ResponsiveCols = { cols: number; xs?: number; s?: number; m?: number; l?: number; xl?: number; xxl?: number; }; export declare const gridProps: { readonly cols: { readonly type: PropType; readonly default: 1; }; readonly rows: { readonly type: PropType; }; readonly gap: { readonly type: StringConstructor; readonly default: "8,12"; }; readonly tag: { readonly type: StringConstructor; readonly default: "div"; }; }; export type GridProps = ExtractPropTypes;