UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

15 lines (14 loc) 596 B
import React from 'react'; import { Props as FlexContainerProps } from '../../../../../components/flex/Container'; import { SectionContainerProps } from '../containers/SectionContainer'; export type Props = { title?: React.ReactNode; onEdit?: () => void; }; export type AllProps = Props & SectionContainerProps & FlexContainerProps; declare function ViewContainer(props: AllProps): import("react/jsx-runtime").JSX.Element; declare namespace ViewContainer { var EditButton: typeof import("./EditButton").default; var _supportsSpacingProps: boolean; } export default ViewContainer;