import React, { ReactElement } from "react";
export interface IValueButtonProps {
    /** Set active state */
    active?: boolean;
    /** Label for value */
    label?: string;
    /** Value */
    value: string;
    /** Icon */
    icon?: ReactElement;
    /** Always show icon */
    alwaysShowIcon?: boolean;
}
export declare const ValueButton: React.ForwardRefExoticComponent<IValueButtonProps & React.RefAttributes<HTMLButtonElement>>;
//# sourceMappingURL=ValueButton.d.ts.map