import * as React from 'react'; import type { BaseUIComponentProps } from "../../internals/types.mjs"; import type { FieldRoot } from "../../field/root/FieldRoot.mjs"; /** * An accessible label that is automatically associated with the select trigger. * Renders a `
` element. * * Documentation: [Base UI Select](https://base-ui.com/react/components/select) */ export declare const SelectLabel: React.ForwardRefExoticComponent & React.RefAttributes>; export type SelectLabelState = FieldRoot.State; export interface SelectLabelProps extends Omit, 'id'> {} export declare namespace SelectLabel { type State = SelectLabelState; type Props = SelectLabelProps; }