import React, { ReactNode } from "react"; import { ViewStyle, TextStyle, TouchableOpacityProps } from "react-native"; import { ThemeName } from "../constants/Colors"; declare const Collapsible: ({ title, titleStyle, triggerComponent, children, containerStyle, animationType, variant, themeScheme, touchableOpacityStyle, style, defaultValue, width }: { title?: string; titleStyle?: TextStyle; defaultValue?: boolean; triggerComponent?: ReactNode; children: ReactNode; containerStyle?: ViewStyle; touchableOpacityStyle?: TouchableOpacityProps["style"]; backgroundColor?: string; animationType?: "spring" | "normal"; themeScheme?: "light" | "dark"; variant?: "default" | "secondary" | ThemeName; width?: ViewStyle["width"]; style?: { backgroundColor?: string; color?: string; borderColor?: string; isFocused?: string; }; }) => React.JSX.Element; export default Collapsible; //# sourceMappingURL=Collapsible.d.ts.map