UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

8 lines (7 loc) 593 B
import React from 'react'; import { ISummaryDetailsControlled } from './types/summaryDetails'; declare const SummaryDetailsBoundary: <V extends string | unknown>(props: React.PropsWithChildren<ISummaryDetailsControlled<V>>, ref: React.ForwardedRef<HTMLDetailsElement> | undefined | null) => JSX.Element; declare const SummaryDetailsControlled: <V extends string | unknown>(props: React.PropsWithChildren<ISummaryDetailsControlled<V>> & { ref?: React.ForwardedRef<HTMLDetailsElement> | undefined | null; }) => ReturnType<typeof SummaryDetailsBoundary>; export { SummaryDetailsControlled };