import type { SpaceAllProps } from '../../../../../components/Space';
export type FormSectionToolbarProps = SpaceAllProps & {
    onEdit?: () => void;
    onDone?: () => void;
    onCancel?: () => void;
};
export default function Toolbar(props: FormSectionToolbarProps): import("react/jsx-runtime").JSX.Element;
