import { type PropsWithChildren, type ForwardedRef } from 'react'; import type { Section as SectionElement, SectionProperties } from '@watching/clips/elements'; export interface SectionProps extends PropsWithChildren> { ref?: ForwardedRef; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-section': SectionProps; } } } export declare const Section: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=Section.d.ts.map