import React from 'react'; type baseSelectProps = Omit, 'onChange'>; export type SelectProps = baseSelectProps & { isInvalid?: boolean; onChange: (value: string) => void; 'data-testid'?: string; }; /** * A custom select component with styling, which is a wrapper around the * native select element. * @param props.onChange returns a string value and not the event */ declare const Select: React.ForwardRefExoticComponent & React.RefAttributes>; export default Select; //# sourceMappingURL=Select.d.ts.map