import React, { FC } from 'react'; interface ContentProps { contentHeight?: number; isOpen: PropsType['open']; previewHeight?: PropsType['previewHeight']; backgroundColor?: PropsType['backgroundColor']; } export interface PropsType { open: boolean; previewHeight?: number; backgroundColor?: string; 'data-testid'?: string; } declare const FoldOut: FC>; export default FoldOut; export { ContentProps };