import React from 'react';
import { ButtonProps } from '../Button';
interface FilterButtonProps extends ButtonProps {
    /**
     * If set, the button will change colors
     */
    selected: boolean;
}
/**
 * A button that has a filter icon associated with it.
 */
export declare const ButtonFilter: React.FC<FilterButtonProps>;
export {};
