import { ColumnWidth, ElementProps } from "../../../../types/shared.mjs"; import React from "react"; //#region src/components/styles/layout/grid/Grid.d.ts type RowProps = ElementProps<'div'>; declare const Row: { ({ className, ...props }: RowProps): React.JSX.Element; displayName: string; }; type ColumnProps = { width: ColumnWidth; } & ElementProps<'div'>; declare const Column: { ({ className, width, ...props }: ColumnProps): React.JSX.Element; displayName: string; }; //#endregion export { Column, ColumnProps, Row, RowProps };