1 | import * as React from 'react';
|
2 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
3 | export type ToastPosition = 'top-start' | 'top-center' | 'top-end' | 'middle-start' | 'middle-center' | 'middle-end' | 'bottom-start' | 'bottom-center' | 'bottom-end';
|
4 | export interface ToastContainerProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
|
5 | position?: ToastPosition;
|
6 | containerPosition?: string;
|
7 | }
|
8 | declare const ToastContainer: BsPrefixRefForwardingComponent<'div', ToastContainerProps>;
|
9 | export default ToastContainer;
|