import React from 'react';
export interface FunInputButtonProps {
    text: string;
    label?: string;
    isDisabled?: boolean;
    isActive?: boolean;
    isCopyable?: boolean;
}
/**
 * Wrapper around FunOptionBox providing tooltip functionality on click
 * Should be grouped in FunOptionPill in new DS along with other components utilizing
 * @see FunOptionBox
 */
export declare const FunInputButton: ({ text, label, isDisabled, isActive, isCopyable, }: FunInputButtonProps) => React.JSX.Element;
