import React from "react"; export declare function Fold(props: FoldProps): JSX.Element; export interface FoldProps { style?: any; title: string; titleStyle?: any; contentStyle?: any; content?: string; children?: React.ReactNode; }