/** * @name custom-sizes.directives * @description Custom sizes directives in ngx-responsive * * @license MIT */ import { TemplateRef, ViewContainerRef, ChangeDetectorRef } from '@angular/core'; import { ResponsiveState } from '../../@core/providers/responsive-state/responsive-state'; import { RESPONSIVE_BASE } from '../../@core/providers/responsive-base/responsive-base'; import { PlatformService } from '../../@core/providers/platform-service/platform.service'; export declare class ShowItSizesDirective extends RESPONSIVE_BASE { protected _showWhenTrue: boolean; constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); set showItSizes(_grid_state: any); } export declare class HideItSizesDirective extends RESPONSIVE_BASE { protected _showWhenTrue: boolean; constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); set hideItSizes(_grid_state: any); }