import React from 'react'; import type { Option } from 'react-select'; import type { Application, ISelectInputProps, ISubnet, Omit } from '@spinnaker/core'; export interface ISubnetSelectInputProps extends Omit { value: string; onChange: (event: React.ChangeEvent) => void; application: Application; readOnly?: boolean; hideClassic?: boolean; defaultSubnetTypes: string[]; subnets: ISubnet[]; region: string; credentials: string; } export interface ISubnetSelectInputState { options: Array>; } export declare function SubnetSelectInput(props: ISubnetSelectInputProps): JSX.Element;