import React, { ReactElement } from "react"; export interface Props { id: string; children: ReactElement; title: string; open?: boolean; saveState?: boolean; dataTestId?: string; classes?: string; titleTag?: string; } export declare const Details: (props: Props) => React.JSX.Element;