import React from 'react' import type { PicassoConfig } from '@toptal/picasso-test-utils' import { render } from '@toptal/picasso-test-utils' import type { OmitInternalProps } from '@toptal/picasso-shared' import { Select } from './Select' import type { SelectProps } from './' jest.mock('../NonNativeSelect', () => ({ __esModule: true, NonNativeSelect: () =>
, })) jest.mock('../NativeSelect', () => ({ __esModule: true, NativeSelect: () => , })) const renderSelect = ( props: OmitInternalProps