import { WorkflowConfiguration } from './workflow-configuration.entity';
import { User } from './user.entity';
export declare class WorkflowAction {
    id: number;
    workflowConfigId: number;
    workflowConfiguration: WorkflowConfiguration;
    actionKey: string;
    actionName: string;
    description: string | null;
    permissions: string[] | null;
    endpoints: Record<string, unknown>[] | null;
    metadata: Record<string, unknown> | null;
    createdAt: Date;
    updatedAt: Date;
    deletedAt: Date | null;
    createdById: number | null;
    updatedById: number | null;
    createdBy: User | null;
    updatedBy: User | null;
    constructor(partial: Partial<WorkflowAction>);
}
