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; children: React.ReactNode; } declare const AccordionItemContent: ({ children, "data-cy": dataCy, paddingSize }: AccordionItemContentProps) => JSX.Element; export default AccordionItemContent;