import { OnInit } from '@angular/core'; import { TableviewSortHeaderComponent } from './../tableview-sort-header/tableview-sort-header.component'; import * as i0 from "@angular/core"; export declare class TableviewSearchSortHeaderComponent implements OnInit { /** * default state search box is show, set it to false to show sort box first * */ isSearchEnabled: boolean; /** * fontAwesome search toggle Icon * */ searchIcon: any; /** * This controls the search Icon toggle color * */ searchToggleIconColor: any; /** * Incase projected sort component is already sorted ascending, this icon will show up. * */ faSortUpIcon: any; /** * fontAwesome sortUpIcon. This is a toggle sort icon. By default shows up * */ faSortDownIcon: any; /** * External color control for sort toggle Icon. * */ sortToggleIconColor: any; /** * sort component Ref. Note Use only if necessary * */ sortComponentRef: TableviewSortHeaderComponent; constructor(); ngOnInit(): void; /** * determines if projected sort component is ascending or desecding*/ isSortAsc(): boolean; /** * render sort Icon based on sort component * */ getSortIcon(): any; /** *Utility functions to align * */ sortAscStyle(): any; sortDescStyle(): any; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }