import React from 'react'; import type { Option } from 'react-select'; import type { IApplicationSummary } from '../../../../application'; interface IApplicatonSelectorProps { applications: IApplicationSummary[]; applicationSelectCallback: (selection: Option) => void; selectedApplication: IApplicationSummary; } export default class ApplicationSelector extends React.Component { render(): JSX.Element; } export {};