declare const gridSectionClasses: { out: string; in: string; content: string; stretch: string; full: string; }; export interface GridSectionProps { class?: string; as?: "div" | "section" | "main"; size: keyof typeof gridSectionClasses; } export declare const GridSection: import("@builder.io/qwik").Component; export {};