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) 495 B
import React from 'react'; import { PageControlType } from './types/pageControl'; declare const PageControlBoundary: <V extends string | unknown>(props: PageControlType<V>, ref: React.ForwardedRef<HTMLDivElement> | undefined | null) => JSX.Element; declare const PageControl: <V extends string | unknown>(props: React.PropsWithChildren<PageControlType<V>> & { ref?: React.ForwardedRef<HTMLDivElement> | undefined | null; }) => ReturnType<typeof PageControlBoundary>; export { PageControl };