UNPKG

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