import { SelectColor } from '../base'; interface ISelect { color: SelectColor; name: string; optionId: string; } export declare const getSelectOptionsWithData: (ids: string[] | undefined, options: ISelect[] | undefined) => any[]; export {};