@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
10 lines (9 loc) • 314 B
TypeScript
/**
* Web Modal Component
*
*/
import React from 'react';
import type { SectionAllProps } from '../../Section';
export type ModalInnerProps = SectionAllProps;
declare function ModalInner(props: ModalInnerProps & React.HTMLProps<HTMLElement>): import("react/jsx-runtime").JSX.Element;
export default ModalInner;