import { InjectionToken } from "@angular/core"; import { RealsoftFormField } from "./form-field"; export type RealsoftFormFieldAppearance = 'fill' | 'outline'; export type RealsoftSubscriptSizing = 'fixed' | 'dynamic'; export type RealsoftFloatLabelType = 'always' | 'auto'; export interface RealsoftFormFieldDefaultOptions { appearance: RealsoftFormFieldAppearance; floatLabel: RealsoftFloatLabelType; hideRequiredMarker: boolean; subscriptSizing: RealsoftSubscriptSizing; } export declare const REALSOFT_FORM_FIELD: InjectionToken; export declare const REALSOFT_FORM_FIELD_DEFAULT_OPTIONS: InjectionToken;