import React from 'react';
import type { FlexContainerAllProps as FlexContainerProps } from '../../../../../components/flex/Container';
import type { SectionContainerProps } from '../containers/SectionContainer';
export type FormSectionEditContainerProps = {
    title?: React.ReactNode;
    onDone?: () => void;
    onCancel?: () => void;
};
export type FormSectionEditContainerAllProps = FormSectionEditContainerProps & SectionContainerProps & FlexContainerProps;
declare function EditContainer(props: FormSectionEditContainerAllProps): import("react/jsx-runtime").JSX.Element;
declare namespace EditContainer {
    var DoneButton: typeof import("./DoneButton").default;
    var CancelButton: typeof import("./CancelButton").default;
}
export default EditContainer;
