import React from 'react';
/**
* Props for the Dropdown component.
*/
interface DropdownProps extends React.ComponentProps<'select'> {
/**
* The name attribute for the select element.
*/
name: string;
/**
* An optional label for the dropdown.
*/
label?: string;
}
/**
* A Win98 themed dropdown/select React component.
*
* This component extends the native HTML `select` element with additional props.
*
* @remarks
* This component can be used to create a dropdown/select input with custom styling
* and behavior by extending the native `select` element. It works seamlessly with
* the `` element to provide options.
*
* @example Creating a dropdown with options
*
* ```tsx
*
*
*
*
*
* ```
*/
declare const Dropdown: React.ForwardRefExoticComponent & React.RefAttributes>;
export default Dropdown;