import * as React from 'react' import * as styled from 'styled-components' import * as SynthReact from '@beatgig/synth-react' interface SelectProps { /** * Required to properly extend styled-components. * @see {@link https://www.styled-components.com/docs/api#caveat-with-classname} */ className?: string } type SelectComponentProps = React.SelectHTMLAttributes & React.RefAttributes & { as?: keyof JSX.IntrinsicElements | React.ComponentType forwardedAs?: keyof JSX.IntrinsicElements | React.ComponentType } & SelectProps type SelectComponent = SynthReact.SynthComponent< SelectComponentProps, HTMLSelectElement > /** * @since 1.0.0 */ declare const Select: SelectComponent /** * We expose the