import { ComponentProps } from 'react';
/**
 * A button component with an information icon that can be used as a trigger.
 *
 * @example
 * ```tsx
 * // Basic usage with Tooltip
 * <Tooltip tooltip="Additional information here">
 *   <InfoButton />
 * </Tooltip>
 * ```
 */
export declare const InfoButton: ({ className, ...props }: ComponentProps<"button">) => import("react").JSX.Element;
