import * as React from "react";
interface Props {
    expanded?: boolean;
    children?: React.ReactNode;
    slideID: string;
    labelID: string;
}
export default function Expandable({ expanded, children, slideID, labelID }: Props): React.JSX.Element;
export {};
