import * as React from 'react'; import type { Application, ISubnet } from '@spinnaker/core'; export interface ISubnetSelectFieldProps { application: Application; component: { [key: string]: any; }; field: string; helpKey: string; hideClassic?: boolean; labelColumns: number; onChange: () => void; readOnly?: boolean; defaultSubnetTypes?: string[]; recommendedSubnetTypes?: string[]; region: string; subnets: ISubnet[]; showSubnetWarning?: boolean; } export declare class SubnetSelectField extends React.Component { private handleChange; render(): JSX.Element; }