import type { ComponentProps } from "react"; import { SelectIndicator, SelectPopover, SelectRoot, SelectTrigger, SelectValue } from "./select"; export declare const Select: (({ children, className, fullWidth, variant, ...props }: import("./select").SelectRootProps) => import("react/jsx-runtime").JSX.Element) & { Root: ({ children, className, fullWidth, variant, ...props }: import("./select").SelectRootProps) => import("react/jsx-runtime").JSX.Element; Trigger: ({ children, className, ...props }: import("./select").SelectTriggerProps) => import("react/jsx-runtime").JSX.Element; Value: ({ children, className, ...props }: import("./select").SelectValueProps) => import("react/jsx-runtime").JSX.Element; Indicator: ({ children, className, ...props }: import("./select").SelectIndicatorProps & Omit>) => import("react/jsx-runtime").JSX.Element; Popover: ({ children, className, placement, ...props }: import("./select").SelectPopoverProps) => import("react/jsx-runtime").JSX.Element; }; export type Select = { Props: ComponentProps>; RootProps: ComponentProps>; TriggerProps: ComponentProps; ValueProps: ComponentProps; IndicatorProps: ComponentProps; PopoverProps: ComponentProps; }; export { SelectIndicator, SelectPopover, SelectRoot, SelectTrigger, SelectValue }; export type { SelectRootProps, SelectRootProps as SelectProps, SelectTriggerProps, SelectValueProps, SelectIndicatorProps, SelectPopoverProps, } from "./select"; export { selectVariants } from "@heroui/styles"; export type { SelectVariants } from "@heroui/styles";