import { PropType } from 'vue'; import { Breakpoints } from '../declaration'; export declare function getResponsiveProps(): { width: { type: PropType; default: null; }; grid: { type: PropType; default: null; }; }; export declare function getGridProps(name: string): { columnGap: { type: (NumberConstructor | StringConstructor)[]; default: number; validator: (value: number | string, props: any) => boolean; }; grid: { type: BooleanConstructor; default: boolean; }; gridSize: { type: (NumberConstructor | StringConstructor)[]; default: number; }; rowGap: { type: (NumberConstructor | StringConstructor)[]; default: number; validator: (value: number | string, props: any) => boolean; }; };