export type AssetKind = "skill" | "agent" | "workflow" | "cron"; export declare function assetListCommand(kind: string | undefined): Promise; export declare function assetShowCommand(kind: string | undefined, id: string | undefined): Promise; export declare function assetValidateCommand(kind: string | undefined): Promise;