export declare const STAGE_TYPE: {
    readonly NEW_LEAD: "new_lead";
    readonly CONTACTED: "contacted";
    readonly QUALIFIED: "qualified";
    readonly UNQUALIFIED: "unqualified";
};
export type StageType = string;
export declare class KanbanPipelineStage {
    id: string;
    name: string;
    type: string;
    description: string;
    sortOrder: number;
    color: string;
    wipLimit: number;
    isActive: boolean;
    createdAt: Date;
    updatedAt: Date;
}
