import type { GridTemplateProps } from '@rjsf/utils'; /** Renders a `GridTemplate`, which is expecting the column size for each viewport breakpoint (xs, sm, md, lg, xl) * coming in via the extra props provided by the caller. * Uses a 12 column grid by default. This can be overridden by passing `layoutGrid` in `uiSchema`. * * @param props - The GridTemplateProps, including the extra props containing the grid sizing details */ export default function GridTemplate(props: GridTemplateProps): import("react/jsx-runtime").JSX.Element;