import React from 'react';
import type { FlexContainerAllProps as FlexContainerProps } from '../../../../../components/flex/Container';
import type { SectionContainerProps } from '../containers/SectionContainer';
export type FormSectionViewContainerProps = {
    title?: React.ReactNode;
    onEdit?: () => void;
};
export type FormSectionViewContainerAllProps = FormSectionViewContainerProps & SectionContainerProps & FlexContainerProps;
declare function ViewContainer(props: FormSectionViewContainerAllProps): import("react/jsx-runtime").JSX.Element;
declare namespace ViewContainer {
    var EditButton: typeof import("./EditButton").default;
}
export default ViewContainer;
