export type CertCommandArgs = {
    args: {
        nameOrPath: string;
    };
    flags: {
        'cert-file'?: string;
        help?: boolean;
        'key-file'?: string;
    };
    opParams: string[];
};
