import { StateType } from './StateType';
import { RuleSet } from './RuleSet';
import { Html } from './Html';
export interface StateBase {
    id: string;
    name: string;
    url: string;
    audio?: {
        src: string;
        loop?: boolean;
        cuePoints?: any[];
        [key: string]: any;
    };
    type: StateType;
    next?: RuleSet[];
    onEnter?: any[];
    onExit?: any[];
    embedded?: boolean;
    header?: Html;
    footer?: Html;
    [key: string]: any;
}
