import './SearchButton.scss';
import React from 'react';
export interface SearchButtonProps {
    id: string;
    label: string;
    icon?: string;
    text?: string;
    active: boolean;
    count?: number;
    variant?: 'toggle' | 'action';
    isDimmed?: boolean;
    isDisabled?: boolean;
    showZeroCount?: boolean;
    backgroundColor?: string;
    textColor?: string;
    onClick: () => void;
}
declare const SearchButton: React.FC<SearchButtonProps>;
export default SearchButton;
//# sourceMappingURL=SearchButton.d.ts.map