import * as React from 'react'; import { IOption } from '../../react-responsive-select'; interface IState { selectedBrand: string; selectedModel: string; selectedColour: string; brands: IOption[]; models: IOption[]; colours: IOption[]; functions: { handleChangeBrand: (newValue: IOption) => void; handleChangeModel: (newValue: IOption) => void; handleChangeColour: (newValue: IOption) => void; handleSubmit: (event: any) => void; }; } export declare class ControlledExample2App extends React.Component<{}, IState> { constructor(props: {}); handleChangeBrand: (newValue: IOption) => void; handleChangeModel: (newValue: IOption) => void; handleChangeColour: (newValue: IOption) => void; handleSubmit: (event: any) => void; render(): React.ReactElement; } export {};