import { Factory } from '../../core';
export interface ComboboxPopoverTargetProps {
    children: React.ReactNode;
    /** Key of the prop that is used to access element ref @default 'ref' */
    refProp?: string;
}
export type ComboboxPopoverTargetFactory = Factory<{
    props: ComboboxPopoverTargetProps;
    ref: HTMLElement;
    compound: true;
}>;
export declare const ComboboxPopoverTarget: import("../..").MantineComponent<{
    props: ComboboxPopoverTargetProps;
    ref: HTMLElement;
    compound: true;
}>;
