import { GridProps, GridTypeMap } from "."; import { Theme } from "../styles"; import StyledProps from "@suid/system/styledProps"; import { InPropsOf } from "@suid/types"; export declare function generateGrid(input: { theme: Theme; ownerState: InPropsOf; }): StyledProps; export declare function generateDirection(input: { theme: Theme; ownerState: InPropsOf; }): any; export declare function generateRowGap(input: { theme: Theme; ownerState: InPropsOf; }): {}; export declare function generateColumnGap(input: { theme: Theme; ownerState: InPropsOf; }): {}; export declare function resolveSpacingClasses(spacing: GridProps["spacing"], container: GridProps["container"], styles?: Record): any[]; /** * * Demos: * * - [Grid](https://mui.com/components/grid/) * * API: * * - [Grid API](https://mui.com/api/grid/) */ declare const Grid: import("@suid/types").OverridableComponent>; export default Grid; //# sourceMappingURL=Grid.d.ts.map