import { StateBase } from './StateBase';
export interface HtmlState extends StateBase {
    html?: string;
    templateUrl?: string;
    timeoutInMs?: number;
}
