import type { JsonFormItemSchema } from '../handler'; export interface GridProps { cols?: number; } export declare function grid({ attr }: JsonFormItemSchema): { tag: string; attr: { class: string; } | { cols?: number; class: string; }; };