export type IFlow = {
    id: string;
    created: Date;
    description: string;
    updated: Date;
    name: string;
};
export declare class Flow implements IFlow {
    readonly id: string;
    readonly kind = "flow";
    readonly created: Date;
    readonly updated: Date;
    name: string;
    description: string;
    constructor(flow: IFlow);
}
