/** * @license * Copyright ASW (A Software World) All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file */ import { Injector, OnInit, OnDestroy, DoCheck, ElementRef } from '@angular/core'; import { ControlValueAccessor, NgControl } from '@angular/forms'; import { FocusMonitor } from '@angular/cdk/a11y'; import { BooleanInput } from '@angular/cdk/coercion'; import { MatFormFieldControl } from '@angular/material/form-field'; import { Subject } from 'rxjs'; import * as i0 from "@angular/core"; export declare class AswCardDate implements OnInit, OnDestroy, DoCheck, ControlValueAccessor, MatFormFieldControl { private injector; private elementRef; private focusMonitor; static nextId: number; ngControl: NgControl | null; focused: boolean; errorState: boolean; stateChanges: Subject; cardDate: string; onChanges: any; onTouched: any; aswInputClass?: string; get value(): any; set value(cardDate: any); private value$; get placeholder(): string; set placeholder(placeholder: string); private placeholder$; get empty(): boolean; get required(): boolean; set required(req: BooleanInput); private required$; get disabled(): boolean; set disabled(value: BooleanInput); private disabled$; id: string; describedBy: string; get shouldLabelFloat(): boolean; constructor(injector: Injector, elementRef: ElementRef, focusMonitor: FocusMonitor); ngOnInit(): void; ngDoCheck(): void; writeValue(value: string): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; setDescribedByIds(ids: string[]): void; onContainerClick(event: MouseEvent): void; updateDate(): void; updateOnTouch(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }