import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import React from 'react'; import { SystemControlsType } from './SystemControlsType.js'; /** Props for {@link SystemControlsUnstyled} and related system control components. */ interface SystemControlsUnstyledProps extends FlexBoxProps { systemControlsType?: SystemControlsType; visible?: boolean; } /** Unstyled mobile system controls that embed a network select when visible. */ declare const SystemControlsUnstyled: React.FC; export type { SystemControlsUnstyledProps }; export { SystemControlsUnstyled }; //# sourceMappingURL=SystemControlsUnstyled.d.ts.map