import * as React from 'react'; /** Displays the extension's configuration state (not added, added and enabled, added and disabled). */ export declare const ExtensionConfigurationState: React.SFC<{ isAdded: boolean; isEnabled: boolean; enabledIconOnly?: boolean; className?: string; }>;