import { SelectOptionType } from '../types'; export declare type GenerateOptionsParamsType = { variants: any[]; brandVariantsWithAttributes: any; isDisabled?: boolean; }; export declare const generateOptions: { ({ variants, brandVariantsWithAttributes, isDisabled, }: GenerateOptionsParamsType): SelectOptionType[]; displayName: string; __docgenInfo: { description: string; displayName: string; props: { variants: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; brandVariantsWithAttributes: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; isDisabled: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; };