import { type PropsWithChildren, type ForwardedRef } from 'react'; import type { BlockGrid as BlockGridElement, BlockGridProperties } from '@watching/clips/elements'; import type { GridProps } from './Grid.tsx'; export interface BlockGridProps extends PropsWithChildren, keyof GridProps>>, Omit { ref?: ForwardedRef; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-block-grid': BlockGridProps; } } } export declare const BlockGrid: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=BlockGrid.d.ts.map