import { type ReactNode, type PropsWithChildren, type ForwardedRef } from 'react'; import type { Disclosure as DisclosureElement, DisclosureProperties } from '@watching/clips/elements'; export interface DisclosureProps extends PropsWithChildren, 'label'>> { ref?: ForwardedRef; label?: ReactNode; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-disclosure': DisclosureProps; } } } export declare const Disclosure: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=Disclosure.d.ts.map