import { PropsWithChildren } from "react";
type FormPanelProps = {
    title: string;
    scrollId?: string;
    className?: string;
};
export declare const FormPanel: ({ title, children, scrollId, className, }: PropsWithChildren<FormPanelProps>) => import("react/jsx-runtime").JSX.Element;
export {};
