{"version":3,"file":"stepper-button.d.ts","sources":["stepper-button.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 { CdkStepper } from './stepper';\n/** Button that moves to the next step in a stepper workflow. */\nexport declare class CdkStepperNext {\n _stepper: CdkStepper;\n /** Type of the next button. Defaults to \"submit\" if not specified. */\n type: string;\n constructor(_stepper: CdkStepper);\n _handleClick(): void;\n}\n/** Button that moves to the previous step in a stepper workflow. */\nexport declare class CdkStepperPrevious {\n _stepper: CdkStepper;\n /** Type of the previous button. Defaults to \"button\" if not specified. */\n type: string;\n constructor(_stepper: CdkStepper);\n _handleClick(): void;\n}\n"]}