import { type PropsWithChildren, type ForwardedRef } from 'react'; import type { Grid as GridElement, GridProperties } from '@watching/clips/elements'; import { ViewProps } from './View.tsx'; export interface GridProps extends PropsWithChildren, 'spacing' | keyof ViewProps>>, Omit { ref?: ForwardedRef; spacing?: GridProperties['spacing'] | boolean; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-grid': GridProps; } } } export declare const Grid: import("react").ForwardRefExoticComponent & import("react").RefAttributes>>; //# sourceMappingURL=Grid.d.ts.map