import { CollectionItem } from "../../collection"; import { ComponentProps, ReactNode } from "react"; import { InteractionProps, InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; declare const DefaultElement = "div"; export interface InnerListboxOptionProps extends InternalProps, InteractionProps, StyledComponentProps { /** * React children. */ children: ReactNode; /** * Whether or not the option is disabled. */ disabled?: boolean; /** * Matching collection item. */ item: CollectionItem; } export declare function InnerListboxOption({ active, as, children, disabled, focus, forwardedRef, hover, id, item: { key, tooltip }, ...rest }: InnerListboxOptionProps): JSX.Element; export declare namespace InnerListboxOption { var defaultElement: string; } /** * [Documentation](https://orbit.sharegate.design/?path=/docs/listbox--default-story) */ export declare const ListboxOption: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type ListboxOptionProps = ComponentProps; export {};