import * as React from "react"; import { SpaceSize } from "../../shared/styles/styleUtils/modifiers/modifierUtils"; interface AccordionItemContentProps { /** * Human-readable selector used for writing tests */ "data-cy"?: string; /** * The amount of space between the border and the content */ paddingSize?: SpaceSize; /** * Allows custom styling */ className?: string; children: React.ReactNode; } declare const AccordionItemContent: ({ children, "data-cy": dataCy, paddingSize, className }: AccordionItemContentProps) => React.JSX.Element; export default AccordionItemContent;