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

9 lines (8 loc) 728 B
import React from 'react'; import { IPageControlAutomateUnControlled } from './types/pageControlAutomate'; declare const PageControlAutomateUnControlledComponent: <V extends string | unknown>({ playingInitially, ...props }: IPageControlAutomateUnControlled<V>, ref: React.ForwardedRef<HTMLDivElement> | undefined | null) => JSX.Element; declare const PageControlAutomateUnControlled: <V extends string | unknown>(props: React.PropsWithChildren<IPageControlAutomateUnControlled<V>> & { ref?: React.ForwardedRef<HTMLDivElement> | undefined | null; }) => ReturnType<typeof PageControlAutomateUnControlledComponent>; export { PageControlAutomateUnControlled }; export { PageControlAutomateUnControlled as PageControlAutomate };