blob: 97bed69e6ac19762cbd1925af286ab1d7528e9ca [file] [log] [blame]
import { ElementRef } from '@angular/core';
import { StepState } from '../step.component';
export declare class TdStepBodyComponent {
contentRef: ElementRef;
get hasContent(): boolean;
actionsRef: ElementRef;
get hasActions(): boolean;
summaryRef: ElementRef;
get hasSummary(): boolean;
/**
* active?: boolean
* Sets for active/inactive states on body.
*/
active: boolean;
/**
* state?: StepState or ['none' | 'required' | 'complete']
* Sets styles for state of body.
* Defaults to [StepState.None | 'none'].
*/
state: StepState;
/**
* Returns 'true' if [state] equals to [StepState.Complete | 'complete'], else 'false'.
*/
isComplete(): boolean;
}