import * as React from "react";
interface Props {
    expandable: boolean;
    expanded?: boolean;
    children?: React.ReactNode;
    noSeparator?: boolean;
    hasPaddingTop: boolean;
    slideID: string;
    labelID: string;
}
declare const SectionContent: ({ expandable, expanded, children, noSeparator, hasPaddingTop, slideID, labelID, }: Props) => JSX.Element;
export default SectionContent;
