import { SelectOptionType } from '../types'; export declare type GenerateOptionsParamsType = { variants: any[]; brandVariantsWithAttributes: any; isDisabled?: boolean; }; export declare const generateOptions: ({ variants, brandVariantsWithAttributes, isDisabled, }: GenerateOptionsParamsType) => SelectOptionType[];