import { type StyleProp, type TextStyle, type ViewStyle } from "react-native"; import { type FlexProps } from "../flex"; type ToggleableContentProps = { header?: { open: string; closed: string; }; style?: StyleProp; headerStyle?: StyleProp; gap?: number | "xs" | "sm" | "md" | "lg" | "xl"; openByDefault?: boolean; } & FlexProps; export declare function ToggleableContent({ children, header, style, headerStyle, gap, openByDefault, }: ToggleableContentProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map