/** @format */ /// import { ExtraStyleProps } from "../types/genericTypes"; interface TextExpandListProps extends ExtraStyleProps { data: { title: string; content?: string; }[]; } declare function TextExpandList({ data, borderColor }: TextExpandListProps): JSX.Element; export default TextExpandList;