import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import type { PropsWithChildren } from 'react'; import React from 'react'; import { SystemControlsType } from '../SystemControlsType.js'; interface SystemControlProps extends FlexBoxProps { controlElement: React.ReactNode; systemControlsType?: SystemControlsType; } /** Collapsible system control row that toggles visibility of a control element. */ declare const SystemControl: React.FC>; export { SystemControl }; //# sourceMappingURL=SystemControl.d.ts.map