1 | import * as React from 'react';
|
2 | import { BsPrefixProps } from './helpers';
|
3 | export interface ModalDialogProps extends React.HTMLAttributes<HTMLDivElement>, BsPrefixProps {
|
4 | size?: 'sm' | 'lg' | 'xl';
|
5 | fullscreen?: true | string | 'sm-down' | 'md-down' | 'lg-down' | 'xl-down' | 'xxl-down';
|
6 | centered?: boolean;
|
7 | scrollable?: boolean;
|
8 | contentClassName?: string;
|
9 | }
|
10 | declare const ModalDialog: React.ForwardRefExoticComponent<ModalDialogProps & React.RefAttributes<HTMLDivElement>>;
|
11 | export default ModalDialog;
|