import React, { ReactNode } from 'react'; export interface LabelledGroupProps { /** Contents of the menu when opened */ children: ReactNode; /** Contents of button */ label: ReactNode; /** Additional styles to apply to the widget container. */ containerStyles?: React.CSSProperties; } /** * Renders a grey outlined box with a label in the top left of the outline/border * * But renders nothing if no children are contained within it. */ export default function LabelledGroup(props: LabelledGroupProps): JSX.Element | null; //# sourceMappingURL=LabelledGroup.d.ts.map