import { HawkSearchComponents, TabsComponentConfig } from '../../../configuration'; import { Facet, TabsComponentModel } from '../../../models'; import { BaseComponent } from '../../base.component'; /** * The Tabs component is used to segment search results by item type, often products and content. * * ## Tag * The tag for this component is ``. * * ## Event-Binding Attributes * | Name | Value | * | :- | :- | * | hawksearch-tab-value | `string` | * * When an element with this attribute is clicked, the specified tab facet value will be selected and the search results will update. * * ## Default Template * The following is the default Handlebars template for this component. To create a custom template, it is recommended to use this as a starting point. * {@embed ./tabs.component.hbs} * * @category Search */ export declare class TabsComponent extends BaseComponent { protected componentName: keyof HawkSearchComponents; protected defaultHtml: string; protected bindFromEvent: boolean; protected renderContent(): boolean; protected getContentModel(): TabsComponentModel; protected onRender(): void; }