import type { Props as SelectProps, SelectValue, SelectOptionProps } from "../Select"; import React from "react"; export interface Props extends Omit, "optionLabelProp"> { } export declare const LabelledSelect: ((props: Props) => React.JSX.Element) & { Option: React.ComponentType; };