{"version":3,"file":"hint.d.ts","sources":["hint.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { InjectionToken } from '@angular/core';\n/**\n * Injection token that can be used to reference instances of `MatHint`. It serves as\n * alternative token to the actual `MatHint` class which could cause unnecessary\n * retention of the class and its directive metadata.\n *\n * *Note*: This is not part of the public API as the MDC-based form-field will not\n * need a lightweight token for `MatHint` and we want to reduce breaking changes.\n */\nexport declare const _MAT_HINT: InjectionToken;\n/** Hint text to be shown underneath the form field control. */\nexport declare class MatHint {\n /** Whether to align the hint label at the start or end of the line. */\n align: 'start' | 'end';\n /** Unique ID for the hint. Used for the aria-describedby on the form field control. */\n id: string;\n}\n"]}