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