import React from 'react'; import type { View } from 'react-native'; import type { SharedProps } from '@coinbase/cds-common/types/SharedProps'; import { type CollapsibleBaseProps } from '../collapsible/Collapsible'; export type AccordionPanelBaseProps = SharedProps & Pick & { /** * Key of the accordion item. * This should be unique inside the same Accordion * unless you want multiple items to be controlled at the same time. */ itemKey: string; }; export type AccordionPanelProps = AccordionPanelBaseProps; /** * Renders a collapsible element to use as the primary content container for an AccordionItem. * Accepts a unique `itemKey` prop to uniquely identify one panel from another. */ export declare const AccordionPanel: React.MemoExoticComponent< ({ ref: forwardedRef, children, collapsed, testID, }: AccordionPanelProps & { ref?: React.Ref; }) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=AccordionPanel.d.ts.map