import type { GetPropDefTypes } from '../../props/prop-def'; /** @public */ declare const gridPropDefs: { columns: { type: "enum | string"; className: string; customProperties: "--columns"[]; values: readonly ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "auto"]; responsive: true; default: string; }; }; /** @public */ declare const gridItemPropDefs: { colSpan: { type: "enum | string"; className: string; customProperties: "--col-span"[]; values: readonly ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "auto"]; responsive: true; }; colEnd: { type: "enum | string"; className: string; customProperties: "--col-end"[]; values: readonly ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "auto"]; responsive: true; }; colStart: { type: "enum | string"; className: string; customProperties: "--col-start"[]; values: readonly ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "auto"]; responsive: true; }; rowSpan: { type: "enum | string"; className: string; customProperties: "--row-span"[]; values: readonly ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "auto"]; responsive: true; }; }; /** @public */ type GridOwnProps = GetPropDefTypes; /** @public */ type GridItemOwnProps = GetPropDefTypes; export { gridPropDefs, gridItemPropDefs }; export type { GridOwnProps, GridItemOwnProps };