import { Branch } from './branch.model';
export declare class DecisionPoint {
    id: string;
    label: string;
    branches: Branch[];
    defaultBranch: Branch;
}
