import { PropsWithBox } from '../../Box'; import { ReactNode } from 'react'; export type AccordionItemProps = PropsWithBox<{ children: ReactNode; value: string; }>; export declare const Item: { ({ children, value, ...rest }: AccordionItemProps): JSX.Element; displayName: string; };