import { ReactNode, SelectHTMLAttributes } from 'react'; import { default as styles } from './Select.module.css'; import { FormPublicProps } from '../FormInput/FormInput'; export { styles as SelectClasses }; export interface SelectProps extends Omit, SelectHTMLAttributes { /** Children elements, typically `option` elements to be rendered within the select. */ children: ReactNode; } /** * Renders a custom styled select input within a `FormInput` container. This component is designed to integrate seamlessly * with the form input styles, providing a consistent look and enhanced features such as a custom dropdown arrow and support * for platform-specific typography. The `FormInput` wrapper facilitates the inclusion of headers and status messages. */ export declare const Select: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;