import * as react from 'react';
import { HTMLAttributes, ReactNode } from 'react';
interface FormPanelProps extends Omit, 'title'> {
title: ReactNode;
description?: ReactNode;
actions?: ReactNode;
footer?: ReactNode;
}
declare const FormPanel: react.ForwardRefExoticComponent>;
export { FormPanel, type FormPanelProps };