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 };
