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