import React from 'react'; import type { ViewStyle } from 'react-native'; interface AccordionProps { title?: string; defaultOpen?: boolean; style?: ViewStyle; _tokens?: Record; children?: React.ReactNode; testID?: string; } export declare function Accordion({ title, defaultOpen, style, _tokens, children, testID }: AccordionProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=accordion.d.ts.map