import React from 'react'; import type { IArtifactAccount } from '../../account'; export interface IArtifactAccountSelectorProps { accounts: IArtifactAccount[]; selected: IArtifactAccount; onChange: (account: IArtifactAccount) => void; className?: string; } export declare class ArtifactAccountSelector extends React.Component { constructor(props: IArtifactAccountSelectorProps); private renderOption; render(): JSX.Element; } export declare const ARTIFACT_ACCOUNT_SELECTOR_COMPONENT_REACT = "spinnaker.core.artifacts.account.selector.react";