/** @format */ /// interface TextExpandProps { title: string; content?: string; } declare function TextExpand({ title, content }: TextExpandProps): JSX.Element; export default TextExpand;