import React from 'react'; interface GroupBoxProps { label?: string; children: React.ReactNode; } /** * A `GroupBox` serves as a container for a set of controls. * It can be used to group related controls. It can also be used to visually separate a set of controls from the rest of the interface. * @example * * * * * * */ declare const GroupBox: { ({ label, children }: GroupBoxProps): React.JSX.Element; displayName: string; }; export default GroupBox;