import { IOption } from '../../react-responsive-select'; export declare type TBrandsOption = IOption; export declare type TModelsOption = IOption & { brand: string; }; export declare type TColoursOption = IOption & { brands: string[]; }; export declare const BRANDS: TBrandsOption[]; export declare const MODELS: TModelsOption[]; export declare const COLOURS: TColoursOption[];