import { ElementProps, MantineStyleProp } from '../../../core';
export interface MenubarTargetProps extends ElementProps<'button'> {
    'data-disabled'?: boolean;
    /** Target label */
    children: React.ReactNode;
    /** Inline styles applied to the target button */
    style?: MantineStyleProp;
    /** Key of the prop used to get element ref, useful for forwarding refs to custom components @default 'ref' */
    refProp?: string;
}
export declare function MenubarTarget(props: MenubarTargetProps): import("react/jsx-runtime").JSX.Element;
export declare namespace MenubarTarget {
    var displayName: string;
}
