import { ComboboxItem, SelectProps } from '@mantine/core'; export type { SelectListOptionButtonProps } from './SelectListOptionButton'; export { SelectListOptionButton } from './SelectListOptionButton'; export type EditorSelectProps = Omit & { data?: (string | ComboboxItem)[]; inputClassName?: string; 'data-test-id'?: string; }; export default function Select({ size, w, comboboxProps, rightSection, renderOption, searchable, data, value, defaultValue, placeholder, onChange, inputClassName, ...inputProps }: EditorSelectProps): JSX.Element; //# sourceMappingURL=index.d.ts.map