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