import * as React from 'react'; import { IOption, IOutputSingleSelect } from '../../react-responsive-select'; interface IFormProps { brands: IOption[]; models: IOption[]; colours: IOption[]; selectedBrand: string; selectedModel: string; selectedColour: string; functions: { handleChangeBrand: (newValue: IOutputSingleSelect) => void; handleChangeModel: (newValue: IOutputSingleSelect) => void; handleChangeColour: (newValue: IOutputSingleSelect) => void; handleSubmit: (event: any) => void; }; } export declare const Form: ({ brands, models, colours, selectedBrand, selectedModel, selectedColour, functions: { handleChangeBrand, handleChangeModel, handleChangeColour, handleSubmit }, }: IFormProps) => React.ReactElement; export {};