import React, { PropsWithChildren } from "react"; import { ViewProps } from "react-native"; type ExpandableSectionProps = { isExpanded: boolean; } & ViewProps; export declare const ExpandableSection: ({ isExpanded, children, }: PropsWithChildren) => React.JSX.Element; export {};