import * as React from 'react';
import { useSelectRoot } from './useSelectRoot.js';
/**
 * Groups all parts of the select.
 * Doesn’t render its own HTML element.
 *
 * Documentation: [Base UI Select](https://base-ui.com/react/components/select)
 */
declare const SelectRoot: SelectRoot;
export { SelectRoot };
declare namespace SelectRoot {
    interface Props<Value> extends useSelectRoot.Parameters<Value> {
        children?: React.ReactNode;
    }
    interface State {
    }
}
interface SelectRoot {
    <Value>(props: SelectRoot.Props<Value>): React.JSX.Element;
    propTypes?: any;
}
