import { CommandInputModel } from './command-input-model.interface';
export declare class CommandDto implements CommandInputModel {
    pk: string;
    sk: string;
    id: string;
    code: string;
    name: string;
    version: number;
    tenantCode: string;
    type: string;
    seq?: number;
    ttl?: number;
    isDeleted?: boolean;
    attributes?: Record<string, any>;
}
