import type { ComponentType } from '../../jsx'; import type { BaseStructureProps } from './types'; export interface ListGridProps extends BaseStructureProps { columns?: number; gap?: number; zigzag?: boolean; } export declare const ListGrid: ComponentType;