interface GridParams { cols?: number | string[]; rows?: number | string[]; gap?: string; gap_x?: string; gap_y?: string; justifyItems?: "start" | "end" | "center" | "stretch"; alignItems?: "start" | "end" | "center" | "stretch" | "baseline"; justifyContent?: "start" | "end" | "center" | "stretch" | "between" | "around" | "evenly"; alignContent?: "start" | "end" | "center" | "stretch" | "between" | "around" | "evenly"; auto?: { flow?: "row" | "col" | "dense" | "row-dense" | "col-dense"; rows?: string; cols?: string; }; } type StylesExport = Record; declare function ClawsGridPlugin({ cols, rows, gap, gap_x, gap_y, justifyItems, alignItems, justifyContent, alignContent, auto, }: GridParams): StylesExport; export { ClawsGridPlugin, type GridParams }; interface GridItemParams { col?: number[]; row?: number[]; justifySelf?: "auto" | "start" | "end" | "center" | "stretch"; alignSelf?: "auto" | "start" | "end" | "center" | "stretch" | "baseline"; } declare function ClawsGridItemPlugin({ col, row, justifySelf, alignSelf }: GridItemParams): StylesExport; export { ClawsGridItemPlugin, type GridItemParams }; //# sourceMappingURL=grid.d.ts.map