/**
 * Copyright IBM Corp. 2020, 2024
 *
 * This source code is licensed under the Apache-2.0 license found in the
 * LICENSE file in the root directory of this source tree.
 */
import React from 'react';
/**
 * The combo button item provides additional actions a user can take.
 */
declare const ComboButtonItem: {
    ({ ...rest }: {
        [x: string]: any;
    }): React.JSX.Element;
    propTypes: {
        /** Provide the contents of the `ComboButtonItem` */
        children: import("prop-types").Validator<NonNullable<import("prop-types").ReactNodeLike>>;
        /** Specify whether the `ComboButton` should be disabled, or not */
        disabled: import("prop-types").Requireable<boolean>;
        /** Provide an optional `href` for the `ComboButtonItem` to become an `a` element */
        href: import("prop-types").Requireable<string>;
        /** Provide an optional icon to render */
        renderIcon: import("prop-types").Requireable<object>;
    };
};
export { ComboButtonItem };
//# sourceMappingURL=index.d.ts.map