export const basicOptions: { dsId: string; type: string; value: string; label: string; }[]; export const groupedOptions: ({ dsId: string; type: string; value: string; label: string; } | { dsId: string; type: string; value?: undefined; label?: undefined; } | { dsId: string; type: string; label: string; value?: undefined; })[]; export const selectOptions: string[]; export const optionsWithApplyAriaDisabled: { dsId: string; type: string; value: string; label: string; applyAriaDisabled: boolean; }[];