import React from 'react';
interface BashOSPlatformProps {
    windows?: string;
    linux?: string;
    macos?: string;
    ios?: string;
    android?: string;
    defaultActiveKey?: string;
}
declare const BashOSPlatform: React.FC<BashOSPlatformProps>;
export default BashOSPlatform;
