import React, { PropsWithChildren } from "react";
export declare function ExpandablePanel({ title, children, invisible, expanded, onExpandedChange, initiallyExpanded, titleClassName, asField, className, innerClassName }: PropsWithChildren<{
    title: React.ReactNode;
    invisible?: boolean;
    initiallyExpanded?: boolean;
    expanded?: boolean;
    onExpandedChange?: (expanded: boolean) => void;
    titleClassName?: string;
    asField?: boolean;
    className?: string;
    innerClassName?: string;
}>): React.JSX.Element;
