import React from 'react'; import { Props as ReactSelectProps, StylesConfig } from 'react-select'; import cx from 'classnames'; import styles from './Select.module.scss'; interface OverrideProps { label: string; id: string; errorMessage?: string; onChange?: (e: any) => void | undefined; } interface OwnProps { controlClassName?: Parameters[0]; isDarkMode?: boolean; disabled?: boolean; labelClassName?: string; customStyles?: StylesConfig; } export declare type Props = Pick> & OverrideProps & OwnProps; export declare const Select: React.FC; export default Select; export { styles }; //# sourceMappingURL=index.d.ts.map